I am attempting to design a query that will pull the most recent entry into to database for each employee that meets a specific criteria. I then need to Every tutorial I can find on how to do this is for Access 2007 and has you enter values into the "Total" line on design view. As far as I can tell there is no such equivalent of this in Access 2013.
So if I have the Following
Employee / Date / Filter
Bob / 10-1/15 / Yes
Bob / 10-5-15 / No
Bob / 9-1-15 / Yes
Sam / 6-1-15 / Yes
Sam / 6-2-15 / Yes
I would like the query to return
Bob / 10-1-15 / Yes
Sam / 6-2-15 / Yes
As those are the most recent dates for each employee for which the filter field is a "Yes"
Thanks!