Hi,
I'm attempting to import a CSV file, which has a header, and the data in each cell is also surrounded with "".
I'm using -
Open strPathName & strFilename For Input As #1
Do While Not EOF(1)
Input #1, strAssetNumber, strTypeLoop, etc
Close #1
This works fine, but what I want to do is:
a) Miss out the header record (ie the titles)
b) Skip some of the cells on each line
Any ideas how i do this?
Thanks in advance
Tim
I'm attempting to import a CSV file, which has a header, and the data in each cell is also surrounded with "".
I'm using -
Open strPathName & strFilename For Input As #1
Do While Not EOF(1)
Input #1, strAssetNumber, strTypeLoop, etc
Close #1
This works fine, but what I want to do is:
a) Miss out the header record (ie the titles)
b) Skip some of the cells on each line
Any ideas how i do this?
Thanks in advance
Tim