G
Guest
I open a CSV, but when I run...
iNumOne = FreeFile
Open "C:\CEFiles\" & cboFileCE For Input As iNumOne
Set Z = CurrentDb
Set RS = Z.OpenRecordset("FromCE")
Do Until EOF(iNumOne)
Input #iNumOne, vStore, vVarZ, vLastInsp, vOneVar, VQues, vTheQues, vAns, _
vComment, vSC, vCD, vCact, vOReason
......
It brings in one long string beginning, and ending with, double-quotes.
What am I doing wrong?
TIA - Bob
iNumOne = FreeFile
Open "C:\CEFiles\" & cboFileCE For Input As iNumOne
Set Z = CurrentDb
Set RS = Z.OpenRecordset("FromCE")
Do Until EOF(iNumOne)
Input #iNumOne, vStore, vVarZ, vLastInsp, vOneVar, VQues, vTheQues, vAns, _
vComment, vSC, vCD, vCact, vOReason
......
It brings in one long string beginning, and ending with, double-quotes.
What am I doing wrong?
TIA - Bob