Hi
I am after an extension that will work with android exporter that has similar features the windows extension "data grid object"
Mainly to import individual cells from.csv document
Joe
Hi
I am after an extension that will work with android exporter that has similar features the windows extension "data grid object"
Mainly to import individual cells from.csv document
Joe
Hi Joe,
You can accomplish this without an extension, using String Tokeniser and a multiline Editbox.
String Tokeniser can split in 2D, so you just pass Newline$ and "," for CSV.
You might need to strip double-quotes from the cells.
It won't work if your cells contain commas, though. For that you'd need very complicated fastloop group to parse it into 2D. It would be easier to just replace them in the Excel with a macro like #comma#, and just replace that macro with a comma after you split the file.
Cheers