B
Bob Barnes
I'm opening text files w/ code snippets of..
RA = "C:\SelfAud\TxtCheck\" & fname
Open RA For Input As iNumOne
Line Input #iNumOne, vTheFile
...where vTheFile (a variant) includes..
"090061",2009-05-07 00:00:00,"78","Open",2009-05-21 00:00:00,"No, employees
could not answer","Joe unaware of procedure ",,""
The issue is the comma after "No, ....
Line Input parses that so my code no longer works.
Is there another way of ensuring this sample vTheFile will parse as...
"090061"
2009-05-07 00:00:00
"78"
"Open"
2009-05-21 00:00:00
"No, employees could not answer"
"Joe unaware of procedure"
""
TIA - Bob
RA = "C:\SelfAud\TxtCheck\" & fname
Open RA For Input As iNumOne
Line Input #iNumOne, vTheFile
...where vTheFile (a variant) includes..
"090061",2009-05-07 00:00:00,"78","Open",2009-05-21 00:00:00,"No, employees
could not answer","Joe unaware of procedure ",,""
The issue is the comma after "No, ....
Line Input parses that so my code no longer works.
Is there another way of ensuring this sample vTheFile will parse as...
"090061"
2009-05-07 00:00:00
"78"
"Open"
2009-05-21 00:00:00
"No, employees could not answer"
"Joe unaware of procedure"
""
TIA - Bob