Print/Not Print based on Flag

  • Thread starter Thread starter Vito
  • Start date Start date
V

Vito

In a report, I want to print a text label of either:
"Thank you for completing your 30 volunteer hours"
or
blank
based on a Yes/No flag I have set in a Form.
How can I do this?
 
Just add an unbound text box and put something like the following in it...

=Iif([SomeYesNoFieldNameHere],"Thank you for completing your 30 volunteer
hours", "")


Hope that helps,

Rick B
 
Back
Top