checkbox

G

Guest

can any1 could teach me how to?

i want to set the value of the checkbox on my report if it is set to YES
then the value would appear a text PAID if NO = blank

thanx
 
A

Allen Browne

Assuming you have a yes/no field named Paid, set the Control Source property
of the text box to:
=IIf([Paid], "Paid", Null)
 
G

Guest

thanks mr. allen

Allen Browne said:
Assuming you have a yes/no field named Paid, set the Control Source property
of the text box to:
=IIf([Paid], "Paid", Null)

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.

mccoy said:
can any1 could teach me how to?

i want to set the value of the checkbox on my report if it is set to YES
then the value would appear a text PAID if NO = blank

thanx
 

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