I have a table named Licenses with a Current? field [Yes|No]. The table is linked to the Employees table by the Employee # field.
For each Employee, there could be a License record with:
- zero or many rows where Current? is No
- zero or one row where Current? is Yes
I need a formula, which will I will use as a filter, that returns a Boolean if the Employee doesn't have a Current? = Yes row.
Essentially, I need a list of Employees that don't have a current license.
How should I approach this?