J
johnboy7676
I have a listbox on a form, whose recordsource is a field ([field1])
of tblSomeTable. I want user to be able to choose one or more items
(usually only one, occasionally 2 or 3, but probably never more than
3), and use those selections for a query which will be used for
another Form and a report.
So that the queries criteria will be
SELECT Field1,
FROM tblSomeTable
WHERE (((Field1)="item1" Or Field1="item2" Or Field1="item3" ));
(assuming there were 3 items selected)
I have Access 2002 Developers Handbook, which has an exmple of a
picklist, but it gets over my head, I'm afraid.
Thanks for any suggestions
of tblSomeTable. I want user to be able to choose one or more items
(usually only one, occasionally 2 or 3, but probably never more than
3), and use those selections for a query which will be used for
another Form and a report.
So that the queries criteria will be
SELECT Field1,
FROM tblSomeTable
WHERE (((Field1)="item1" Or Field1="item2" Or Field1="item3" ));
(assuming there were 3 items selected)
I have Access 2002 Developers Handbook, which has an exmple of a
picklist, but it gets over my head, I'm afraid.
Thanks for any suggestions