G
Guest
I have the follwing Query: "Event Type Q1"
SELECT [Event Type].EventTypeID, [Event Type].EntryTypeCategory,
[EventType].EventTypeDescription
FROM [Event Type]
WHERE ((([Event Type].EntryTypeCategory)=[Category]))
ORDER BY [Event Type].EntryTypeCategory;
Table Event refers to table Event Type.
I have a form "Maintain Event" that has a dropdown field EventTypeID and
EventCategory. I want to pass the EventCategory to "Event Type Q1" to select
only the records equal to EventCategory.
How can I do that?
SELECT [Event Type].EventTypeID, [Event Type].EntryTypeCategory,
[EventType].EventTypeDescription
FROM [Event Type]
WHERE ((([Event Type].EntryTypeCategory)=[Category]))
ORDER BY [Event Type].EntryTypeCategory;
Table Event refers to table Event Type.
I have a form "Maintain Event" that has a dropdown field EventTypeID and
EventCategory. I want to pass the EventCategory to "Event Type Q1" to select
only the records equal to EventCategory.
How can I do that?