Overflow question

J

Jack

Hello,

I'm attempting to import a .txt file into Access but get a pop up that only
says "Overflow".

What could be the cause of this?

Thanks in advance,
Jack
 
F

Frank Marckus

Normally you get an overflow when you've tried to assign a value to a
variable which is greater than the variable size - e.g. trying to make a byte
variable equal to 300. Do you have a counter in the loop which presumably is
reading the text file one line at a time? (I'm assuming you're using VBA to
import the text file).
 
Top