I can export a report to Excel just fine but the yes/no fields in the report are not being exported (every other field goes OK but not the yes/no fields).
What would you like to see in the Excel file? You can't export a check box (that I am aware of) but you can export -1/0 or Yes/No or True/False or any other values you want. You might need to use a query rather than exporting a table.
I want to use Yes/No to return 1/0 for a calculation (Value = Value*[Yes/No]) but I can't seem to find out how. From your response, dhookom, it sounds like it's very easy & I'm being very dim.
Thanks in advance for showing me just how dim witted I am.
A yes/no field stores a -1 for yes and 0 for no. You can use a query to export to Excel. The query can use a calculated field like:
YNFldA: IIf([YNField],"Value Is Yes", "Value Is No"
or if you want to do math:
QtyIfYes:[Qty] * Abs([YNField])
Many thanks Duane, that was quick!
So far everything I've done has refused to accept Y/N as numeric, I'll let you know how it works.
Are you any good with Relationships? I've got a query on that Forum about creating & picking up static data which nobody seems to want to respond to. Maybe I'm not being clear enough.
Many thanks again
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.