>I have a form that tracks gender values, by a radio button group.
>
[quoted text clipped - 3 lines]
>Does anyone know how I can take the option value, to display in a
>checkbox field on a report if the individual is male or female?
A report text box can use an expression to do that:
=IIf([the field] = 1, "Male", "Female")
Or, if you want the report to also use an option group, then
just bind the report's option frame control to the same
field as the form's option frame.

Signature
Marsh
MVP [MS Access]
ecklers@gmail.com - 12 Dec 2005 22:44 GMT
Thanks for your help- but how would I get this to enable a checkbox
value?
Marshall Barton - 12 Dec 2005 23:47 GMT
>Thanks for your help- but how would I get this to enable a checkbox
>value?
For a Check box, use the expression
=([the field] = 1)

Signature
Marsh
MVP [MS Access]