Change Check Box to Yes/No?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am pulling a query using three tables. Several of the fields are Check
Boxes (in the Tables). I would like the output from the query to be Yes or
No. Is there a way I can change the properties in the query?
 
I am pulling a query using three tables. Several of the fields are Check
Boxes (in the Tables). I would like the output from the query to be Yes or
No. Is there a way I can change the properties in the query?

Don't display data using a Query Datasheet; use a Form (for onscreen)
or Report (for printing) based on the query instead.

You can bind a Textbox control, with its Format property set to
yes/no, to the checkbox field in your table/query.

John W. Vinson[MVP]
 
Back
Top