My report deals with three tables. Primary table = customer_order; Secondary table = delivery_times, Tertiary table = employee_times.
The links are:
customer_order.order_id to delivery_times.order_id &
delivery_times.employee_id to employee_times.employee_id
The problem occurs with employees who show delivery details but no clock-in time. If an error occurs with our automated time clocks, no employee information is included in the tertiary table. When this happens, the report drops the employee.
I have tried a right join, reversing links, and multiple formulas using isnull, not(isnull), and other functions. Since there isn’t actually a null, because no information about the employee is in the tertiary table, I can’t find anything that will work. My dream solution is to write a formula that will display the clock-in time or “No time” when no employee information is found in the tertiary table. Thanks in advance for any advice.
The links are:
customer_order.order_id to delivery_times.order_id &
delivery_times.employee_id to employee_times.employee_id
The problem occurs with employees who show delivery details but no clock-in time. If an error occurs with our automated time clocks, no employee information is included in the tertiary table. When this happens, the report drops the employee.
I have tried a right join, reversing links, and multiple formulas using isnull, not(isnull), and other functions. Since there isn’t actually a null, because no information about the employee is in the tertiary table, I can’t find anything that will work. My dream solution is to write a formula that will display the clock-in time or “No time” when no employee information is found in the tertiary table. Thanks in advance for any advice.