I am trying to export a CSV file with data from a table. The purpose of this export is to produce a file in a format for uploading to a mainframe. Scattered throughout the table are fields whose values are NULL. The problem that I am having is that Access only delimits NULL fields in the .csv with commas, and only uses the double quotes as a text delimiter. For the mainframe, I need ALL fields to be enclosed in double quotes, even if null.
For example,
I get: "a","b",,"d",,"f",,
I need: "a","b","","d","","f","",
Any suggestions are appreciated.
- - - -
Bryan
For example,
I get: "a","b",,"d",,"f",,
I need: "a","b","","d","","f","",
Any suggestions are appreciated.
- - - -
Bryan