Hi,
I have a question regarding following code
dim name1 as string
dim cd as string
Dim su as stringutils
Dim table as list
Dim cells() as string
Table = su.LoadCsv(File.dirinternal, "myfile.txt", TAB)
' myfile is a tab delimited file with 5 columns, i.e. name, code no, class, area, location
cells = Table.Get(2)
Now if I want to get the entry give in row 2 of the file relevant to name and code no, can I use following code
name1 = cells(0)
cd = cells(1)
or do I need to modify my array for that purpose
I have a question regarding following code
dim name1 as string
dim cd as string
Dim su as stringutils
Dim table as list
Dim cells() as string
Table = su.LoadCsv(File.dirinternal, "myfile.txt", TAB)
' myfile is a tab delimited file with 5 columns, i.e. name, code no, class, area, location
cells = Table.Get(2)
Now if I want to get the entry give in row 2 of the file relevant to name and code no, can I use following code
name1 = cells(0)
cd = cells(1)
or do I need to modify my array for that purpose