I have a text file I am trying to upload into a table. I am doing that by reading one line at a time from a text file. Sometimes the text file has blank spaces (it appears to be) at the end of the file. When it encounters, the process errors out. How can I say to skip the line if it is blank?
I tried
if d.item("IMPORT_REC"
& "" <> "" then
if d.item("IMPORT_REC"
<> "" then
if IsNull(d.Item("IMPORT_REC"
) then
But none of them seem to work.
Thanks for any tips.
I tried
if d.item("IMPORT_REC"
if d.item("IMPORT_REC"
if IsNull(d.Item("IMPORT_REC"
But none of them seem to work.
Thanks for any tips.