Query All Employees Who Have Not Logged In for the Day

jrsarrat

New Member
Joined
Jul 8, 2018
Messages
47
Greetings!

I have produced a query that shows only the names of employees who have not logged in. But, I want the query to also only give me the employees who have not logged in for the current date = Date().

How do I incorporate that into this query I have already produced :

SELECT *
FROM Emp_tbl AS e
WHERE NOT EXISTS
(select null from tblEmpLogin t where t.pf_id = e.pf_id);

The date field 'DTE' is in table tblLogInOut.

Thank you for your help!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Your query references table "Emp_tbl" and "tblEmpLogin", but the you say that the date field is in the "tblLogInOut" table.

I think you need to tell us the structure and relationships of all three of these tables (how they relate to each other).
And perhaps post some sample data. I am most interested as to what the data looks like in the table that shows whether or not they have logged in.
 
Upvote 0

Forum statistics

Threads
1,213,497
Messages
6,113,999
Members
448,543
Latest member
MartinLarkin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top