yes no true false tick toggle

P

Patrick Stubbin

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
 
F

fredg

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.
 
Top