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
Rick B - 19 Jan 2005 21:32 GMT
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?
> 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
[quoted text clipped - 3 lines]
> Thank you in advance,
> hrman
fredg - 19 Jan 2005 22:19 GMT
> 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
[quoted text clipped - 3 lines]
> 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.

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
John Vinson - 20 Jan 2005 01:24 GMT
>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]