Header Text

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

Guest

I have a report that has a Yes/No check off box called Active/Inactive. What
I would like is in the Header for "Active Contact" or "InActive Contact" to
print depending on if this check box is marked or not. I am new to
access...how would I do this?
 
Add a text box with a control source of:
=IIf([Active/Inactive]=True,"Active Contact", "InActive Contact")
This assumes that checked means Active and not Inactive.

Make sure the name of the control is not a field name.
 
It worked...thank you very much.
--
Thank, Lori


Duane Hookom said:
Add a text box with a control source of:
=IIf([Active/Inactive]=True,"Active Contact", "InActive Contact")
This assumes that checked means Active and not Inactive.

Make sure the name of the control is not a field name.

--
Duane Hookom
MS Access MVP
--

Lori said:
I have a report that has a Yes/No check off box called Active/Inactive.
What
I would like is in the Header for "Active Contact" or "InActive Contact"
to
print depending on if this check box is marked or not. I am new to
access...how would I do this?
 

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