ted.martin
Registered User.
- Local time
- Today, 04:57
- Joined
- Sep 24, 2004
- Messages
- 743
I have a table field (Group) that is linked to a Multi Select List Box.
I want to open a form, filtered to just ONE of the Groups stored in that Group field.
I have a simple pop up form that allows selection of the desired filter from a combo box of individual Group names and then would like the following code to run when the form opens.
Me.Filter = "[Group] = Like ""*"" & '" & Group.Text & "' & ""*""" ' List Box version
However, I keep getting an error message saying that the multi-valued field 'Group' cannot be used in a Where or Having clause.
In summary, I want to store multiple groups in the main table and then be able to select only one of the Groups from a combo and get the form to open based on the single Group selected from that combo.
Hope this is clear and that someone can guide me through. Thanks.
I want to open a form, filtered to just ONE of the Groups stored in that Group field.
I have a simple pop up form that allows selection of the desired filter from a combo box of individual Group names and then would like the following code to run when the form opens.
Me.Filter = "[Group] = Like ""*"" & '" & Group.Text & "' & ""*""" ' List Box version
However, I keep getting an error message saying that the multi-valued field 'Group' cannot be used in a Where or Having clause.
In summary, I want to store multiple groups in the main table and then be able to select only one of the Groups from a combo and get the form to open based on the single Group selected from that combo.
Hope this is clear and that someone can guide me through. Thanks.