yes/no checkboxes

P

Pearl

I have a report based on a query that has yes/no checkboxes. Is there a way
without using coding to allow me to translate the yes/no checkboxes on the
report so that they , instead, say "yes" or "no"???
 
K

Keith Wilby

Pearl said:
I have a report based on a query that has yes/no checkboxes. Is there a
way
without using coding to allow me to translate the yes/no checkboxes on the
report so that they , instead, say "yes" or "no"???

Calculate it in your query:

Iif([MyField], "Yes","No")

Keith.
www.keithwilby.co.uk
 
J

John Spencer

For the relevant control, set its format property to the built-in "Yes/No"
format (no quotes).

Format: Yes/No


John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County

Keith said:
Pearl said:
I have a report based on a query that has yes/no checkboxes. Is there
a way
without using coding to allow me to translate the yes/no checkboxes on
the
report so that they , instead, say "yes" or "no"???

Calculate it in your query:

Iif([MyField], "Yes","No")

Keith.
www.keithwilby.co.uk
 
K

Keith Wilby

John Spencer said:
For the relevant control, set its format property to the built-in "Yes/No"
format (no quotes).

Format: Yes/No


John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County

Once again I am reminded of why I am not an MVP. Nice catch John, I don't
think I've ever used that property.

Keith.
 

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