Read and iterate Column Values

I need to read values from Excel using Excelize package.Is there any examples for read all the Column Values from Excel?
For Example
S.No. Category

  1.       Test1
    
  2.        Test2
    
  3.         Test 3
    

I stored above data in Excel.I need to get length of Category column and print Category values.(Test1 to Test3).

Thanks,
Rajapandian.B

Could you export the data from excel into CSV and then just parse it with the stdlib encoding/csv?

Ok Thanks

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.