I am trying to create a query that will tell us if a shift forgot to log info...
We have 3 shifts that enter verification of tasks which happen to be the same on each shift. We have some forgetful folks who can't seem to remember to log their tasks as they complete them, so I have to go back thru and figure out which shift forgot to input their task as complete.
so the table records the date, user name, shift, task name and completion status.
I am sure this is simple... and I am just missing it... but simple is often my hardest task!
I have tried to query using the task and then shift, not 1 or not 2 or not 3
but it doesn't work, still brings up every record... i only want it to pull in the task where a shift failed to enter data, and tell me which shift was missing
even tried doing an iif statement... iif(shift not like "1", "missed 1", iif(shift not like "2", "missed 2", iif(shift not like "3", "missed 3"))) and that didn't work either.
Any ideas?
We have 3 shifts that enter verification of tasks which happen to be the same on each shift. We have some forgetful folks who can't seem to remember to log their tasks as they complete them, so I have to go back thru and figure out which shift forgot to input their task as complete.
so the table records the date, user name, shift, task name and completion status.
I am sure this is simple... and I am just missing it... but simple is often my hardest task!
I have tried to query using the task and then shift, not 1 or not 2 or not 3
but it doesn't work, still brings up every record... i only want it to pull in the task where a shift failed to enter data, and tell me which shift was missing
even tried doing an iif statement... iif(shift not like "1", "missed 1", iif(shift not like "2", "missed 2", iif(shift not like "3", "missed 3"))) and that didn't work either.
Any ideas?
Comment