I'm using MS Access to create a db for events and scheduling of my staff. I want to use a parameter form to run a query showing what 1 (or more) employees are assigned to during a given time period. I've got the date function of the parameter form working flawlessly, but I cannot figure out how to select employees and make the query work properly. If I have the following in the criteria of every employee checkbox, I get no results.
Like IIf([Forms]![frm_TechTest]![Lowder]=False,"*",[Forms]![frm_TechTest]![Lowder])
If I have this criteria in only 1 checkbox field, it works for that employee.
From 8-12 hours scanning the web, I think I need to have some extensive VB coding in each field allowing the criteria to act as an "OR" instead of an "AND", but not sure. Thoughts?
Like IIf([Forms]![frm_TechTest]![Lowder]=False,"*",[Forms]![frm_TechTest]![Lowder])
If I have this criteria in only 1 checkbox field, it works for that employee.
From 8-12 hours scanning the web, I think I need to have some extensive VB coding in each field allowing the criteria to act as an "OR" instead of an "AND", but not sure. Thoughts?
Last edited: