hide checkbox on report

D

deb

I was wondering how I can have a check box show up on a
report only if the answer is yes....otherwise I would
prefer it to not show up at all.

Also, can I have it displayed as a "b" other than a check
box?

--Deb
 
H

Howard Brody

I wouldn't worry about it in the Report. Add a field to
the source query, based on the CheckBox. If the CheckBox
is Yes, populate your letter "b" into the field, otherwise
leave it blank. Then use the new field on your report
instead of the CheckBox.

Hope this helps!

Howard Brody
 
F

fredg

I was wondering how I can have a check box show up on a
report only if the answer is yes....otherwise I would
prefer it to not show up at all.

Also, can I have it displayed as a "b" other than a check
box?

--Deb

Deb,
Instead of using the actual check box field in your report,
use a text control instead.
Add a new text control to the report.
Set it's Control Source to the CheckBox field.
Then write, in the control's Format Property line:
;"b";

The letter b will appear only if the check box is true.
Nothing will appear otherwise.
 

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

Top