
Originally Posted by
June7
Is the join type an INNER? Try LEFT or RIGHT ("Include all records from Employees and only those from Time Card Table that match").
Thanks for your quick reply
Here is the SQl Statement
Code:
SELECT [Employees Extended].EmployeeID, [Employees Extended].[Employee Name], [Employees Extended].DateTerminated, [Temp Time Card Entry].Dateworked
FROM [Employees Extended] Inner JOIN [Temp Time Card Entry] ON [Employees Extended].EmployeeID = [Temp Time Card Entry].EmployeeID
WHERE ((([Employees Extended].DateTerminated) Is Null) AND (([Temp Time Card Entry].Dateworked)>#4/16/2014#))
ORDER BY [Employees Extended].[Employee Name];
What i'm trying to do is as follows
Employee Table Time Card Table
(after filtering for just current employees) ( employee time entered )
---------------------------------------------------------------------
John Smith John Smith
Steve Jobs
Bill Gates
In the combobox on time sheet i would like to have ( John Smith) removed from
the list since his time would have already been entered.