Thanks so far for the help...but...I am not having any luck!
I know I am missing something that I should be doing...where excactly should
I add the field and what other steps do I need to take? I have tried putting
in the field name = A in the properties box of the checkbox & then adding the
text string directly in the text box...but all that happened was when you go
back to form view...you can see the string?!! More detailed help needed guys
please!
Thanks again!
:
Checkbox name = A
if the data source is a query you can add this to the
query;
AA:iif([A]=-1,"Yes","")
and link the text box to field name "AA" instead of " A "
or you can add this to the text box directly;
=iif([A]=-1,"Yes","")
-----Original Message-----
Just add an unbound field and put an if statement in it.
=IIf([SomeField],"yes","")
Hope that helps,
Rick B
"jimmy dean" <jimmy
[email protected]>
wrote in message
[email protected]...
How do I add the message "Yes" when a checkbox is
clicked? I need it to
show
beside/as part of the checkbox i.e. in the textbox
that is part of the
checkbox. I do not want "Yes" to be displayed unless
the box is checked.
Thank you in advance!
.