How do I create an option group in table?

G

Guest

I created an option group with three choices in form design view; the option
group is not shown in the table view. I did create a check box in table
design for that field. Please help me create the option group to display in
both form and table views.

Thank you in advance,
hrman
 
R

Rick B

You can't in table-view. Table view displays the records in a TABLE VIEW.
How could you show an option group (a box) in a TABLE VIEW?
 
F

fredg

I created an option group with three choices in form design view; the option
group is not shown in the table view. I did create a check box in table
design for that field. Please help me create the option group to display in
both form and table views.

Thank you in advance,
hrman

Change that check box field in the table to Number datatype, field
size Integer.
On the form, make that field the Control source for the Option Group.
The Table field will store the selected value of the group as a number
value.

You can display the number value as text, in a report for instance,
using an unbound control. Set it's control source to:
=Choose([OptionField],"Text1","Text2","Text3") etc.
 
J

John Vinson

I created an option group with three choices in form design view; the option
group is not shown in the table view. I did create a check box in table
design for that field. Please help me create the option group to display in
both form and table views.

You cannot.

Table datasheets are of VERY limited utility. They are not designed as
data entry or editing tools. In particular, table datasheets do not
allow the use of Option Group controls for display.

A Table is a data *storage* object. A form is a data *display* object.
They are different kinds of objects, for different purposes.

John W. Vinson[MVP]
 

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