yes no true false tick toggle

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

Guest

I have a table that has tick boxes for yes/no

how can i set up in a report a field that print "yes" and "no" based on the
field being ticked or not
 
I have a table that has tick boxes for yes/no

how can i set up in a report a field that print "yes" and "no" based on the
field being ticked or not

One way is to use a text control instead of the check box on the
report.
Set the Text control's control source to the check box field.
Set the control's Format property to:
;"Yes";"No;

Look up
Format Property + Number and Currency datatype
in Access help.
 
Back
Top