StumpedTechy
MIS
I have a line such as this -
objFileOutput.WriteLine strDeviceName & "," & objSerialNumber & "," & objLoggedInUser & "
which will not write to a CSV format it gives me a syntax error. Though I can get a single variable to go by doing.
objFileOutput.WriteLine strDeviceName & ","
I also can get more of a second line in there by doing -
objFileOutput.WriteLine strDeviceName & ",Insert witty comment here."
How do I get the first line to show up as 1,2,3 so it shows up correctly in a csv?
objFileOutput.WriteLine strDeviceName & "," & objSerialNumber & "," & objLoggedInUser & "
which will not write to a CSV format it gives me a syntax error. Though I can get a single variable to go by doing.
objFileOutput.WriteLine strDeviceName & ","
I also can get more of a second line in there by doing -
objFileOutput.WriteLine strDeviceName & ",Insert witty comment here."
How do I get the first line to show up as 1,2,3 so it shows up correctly in a csv?