Display Radio Button Value on Report

E

ecklers

Hi All-

I have a form that tracks gender values, by a radio button group.

By virtue of the wizard, these will assign either a value of 1 or 2 in
the option group.

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?

Thanks for your help in advance.

Nate
 
M

Marshall Barton

I have a form that tracks gender values, by a radio button group.

By virtue of the wizard, these will assign either a value of 1 or 2 in
the option group.

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.
 

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