Import a CSV into an array?
Dave: As I responded yesterday, you have to open the file and read one line
at a time. then use the split functions to seperate athe data into an array.
"Dave" wrote:
I'm trying to import a csv file into a 2D array in VBA, for example:
myFile(column_count,row_count), is this possible?
Thanks
|