Hi,
I'm using the GetLines function from here to read in an 800MB CSV file:
This works fine for smaller sized CSV, but for the 800MB one:
--- shows "1" (and there are 450,000 rows)
and
shows blank
(same for pLine(1) etc...)
Could it be there are limits on the size that could be read in? If so, how get around this?
Thanks
I'm using the GetLines function from here to read in an 800MB CSV file:
This works fine for smaller sized CSV, but for the 800MB one:
Code:
UBOUND(pLine())+1
and
Code:
pz = pLine(0) a = @pz ? a
(same for pLine(1) etc...)
Could it be there are limits on the size that could be read in? If so, how get around this?
Thanks
Comment