In my job, we are required to take a certain number of classes each year to keep our license. I have a report that shows how many classes each employee has taken so far. Works great. The problem is those who have taken no classes yet are not showing up on the report at all. I need to either make a report of people with no classes for this year, or add them to the existing report with a zero for total units.
I have a Classes table and an Employees table (joined by EmployeeNumber). My first report selects records from the Classes table that have a renewal date of 2004. I need one that lists the employees with no classes with that renewal date.
I thought about using WHERE [renewal date] <> "2004", but most of the employees have at least one class from 2003 or before, so that's no help.
Does anyone have a good idea for me?
I have a Classes table and an Employees table (joined by EmployeeNumber). My first report selects records from the Classes table that have a renewal date of 2004. I need one that lists the employees with no classes with that renewal date.
I thought about using WHERE [renewal date] <> "2004", but most of the employees have at least one class from 2003 or before, so that's no help.
Does anyone have a good idea for me?