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
 

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

Back
Top