L
Lila
I have a database with about 6000 names, each name is associated with a
certain named event. There are a group of people all associated to the same
named event. For example, contacts 1-100 might be associated with "spring
training" and users 101-250 might be associated with "fall review". There are
about 30 named events.
My reporting is getting complicated because I need to run reports that a)
only show people associated with certain events b) show all contacts or c)
show contacts which are associated with events 1, 4 and 8 or any combination
of the 30 events.
My idea was to create a form which lists these events and have a check mark
next to them. When I run a certain report, this form would pop up and ask
which events I want to see. I would put a check next to each event I want to
see, and a contact list for that event would be shown.
So, I created a new query
SELECT Contacts.Info_FirstName, Contacts.Info_LastName, Contacts.Info_Event
FROM Contacts
WHERE ((([Contacts.Info_Event])=Nz([enter event],[Contacts.Info_Event])));
But this only allows me to type in the event name. Because there are over 30
events, this can be cumbersome, not to mention UN-user-friendly.
Is there a tutorial somewhere that can help walk me through this process???
certain named event. There are a group of people all associated to the same
named event. For example, contacts 1-100 might be associated with "spring
training" and users 101-250 might be associated with "fall review". There are
about 30 named events.
My reporting is getting complicated because I need to run reports that a)
only show people associated with certain events b) show all contacts or c)
show contacts which are associated with events 1, 4 and 8 or any combination
of the 30 events.
My idea was to create a form which lists these events and have a check mark
next to them. When I run a certain report, this form would pop up and ask
which events I want to see. I would put a check next to each event I want to
see, and a contact list for that event would be shown.
So, I created a new query
SELECT Contacts.Info_FirstName, Contacts.Info_LastName, Contacts.Info_Event
FROM Contacts
WHERE ((([Contacts.Info_Event])=Nz([enter event],[Contacts.Info_Event])));
But this only allows me to type in the event name. Because there are over 30
events, this can be cumbersome, not to mention UN-user-friendly.
Is there a tutorial somewhere that can help walk me through this process???