checkbox

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
Assuming you have a yes/no field named Paid, set the Control Source property
of the text box to:
=IIf([Paid], "Paid", Null)
 
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
 
Back
Top