yes/no = true false when merged

C

Chris

I am trying to merge an access quary to a word document. The fields with the
check box come up as true/false. how do I get it to show yes/no.
 
P

pietlinden

I am trying to merge an access quary to a word document.  The fields with the
check box come up as true/false.  how do I get it to show yes/no.  

as a checkbox or as text? You convert it to "Yes" or "No" with an
expression.

IIF([MyField]=True,"Yes","No")
 
O

Otto Mortensen

<[email protected]> skrev i meddelelsen
I am trying to merge an access quary to a word document. The fields with
the
check box come up as true/false. how do I get it to show yes/no.

as a checkbox or as text? You convert it to "Yes" or "No" with an
expression.

IIF([MyField]=True,"Yes","No")
 

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