Z
Zanstemic
SELECT Events.EventID, Events.EventName
FROM Events
WHERE (((Events.EventID)<27))
ORDER BY Events.EventName;
Currently the query is showing everything in the event list from 1 though
27. I would also like to hide 13, 14, 15, 16.
In Query builder the <27 is in the Criteria field.
Any suggestions on how to best approach this?
Thanks in advance for the help.
FROM Events
WHERE (((Events.EventID)<27))
ORDER BY Events.EventName;
Currently the query is showing everything in the event list from 1 though
27. I would also like to hide 13, 14, 15, 16.
In Query builder the <27 is in the Criteria field.
Any suggestions on how to best approach this?
Thanks in advance for the help.