Exporting a yes/no field

lowanam1

Registered User.
Local time
Yesterday, 16:07
Joined
Jan 13, 2012
Messages
106
When I export a query into excel the yes/no fields that I have read as true /false instead of yes/no. Is it possible to get to read yes/no after being exported into excel?

Also when I export currency into excel it goes out to two decimals places even tho the default setting in acces is at 0. Is there a fix for this as well?

Any help would be greatly appreciated.
Thank you
 
Im using the shortcut option to export in 2007. thank you
 
Set up your field in your query like this:

NewFieldNameHere:IIf([OriginalFieldNameHere]<> 0, "Yes", "No")

And for your other field, the currency one you can use

NewFieldNameHere:FormatCurrency([OriginalFieldNameHere], 0)
 
In the query design view, I would put that in the field row?
 

Users who are viewing this thread

Back
Top Bottom