What i'm trying to accomplish a text file that is formatted just perfectly for an import into a SQL server database. The software we are running on this server is fickle to say the least. So my date fields have to be mm/dd/yyyy without the time stamp.
Now when I export the query straight to a text file, the formatting is fine without the time stamp. But i'm exporting this text file from a TABLE populated by my queries. I did as you said and put format([DOB],"mm/dd/yyyy") but when I get over to my table and then do the export, I still have a time stamp attached. Can I throw this format function in the table itself? I have tried an mm/dd/yyyy in the table's FORMAT field, but I still get a time stamp when I export it. What am I doing wrong?