File Export to CSV

C

celine

When exporting file to csv the Null values are not shown with the delimiter.
Anyone know how to Export Null Fields to Delimited-Text Format Files?
 
A

Allen Browne

celine said:
When exporting file to csv the Null values are not shown with the
delimiter.
Anyone know how to Export Null Fields to Delimited-Text Format Files?

Perhaps you could try using Nz() to get a zero-length string, by typing an
expression like this into the Field row in query design:
Nz([YourTextFieldNameHere], "")
and then exporting the query.

Untested. See how you go.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top