I [think] I know option groups cannot be multi-select.
I need a way to select 1 to 10 values from another table
My plan is to use a multi-select listbox with the Record Source pointing to the other table and concatenating those record IDs into a bound field on my form.
So a record on my form whose listbox had Table and Stool selected would have 1,3 in the bound field. From there I would use a case statement to do the rest of what I need.
ID ITEM
1 Table
2 Chair
3 Stool
Is there a better way to handle this? If not, what would the code to update bound field with the listbox selections the look like?
I need a way to select 1 to 10 values from another table
My plan is to use a multi-select listbox with the Record Source pointing to the other table and concatenating those record IDs into a bound field on my form.
So a record on my form whose listbox had Table and Stool selected would have 1,3 in the bound field. From there I would use a case statement to do the rest of what I need.
ID ITEM
1 Table
2 Chair
3 Stool
Is there a better way to handle this? If not, what would the code to update bound field with the listbox selections the look like?