I have a query with multiple dates for the same person and ID # so it shows up several times. I have to filter by the most recent date. Tried the max and last but multiple are still showing up. Any suggestions. Thanks
That's a super horrible table. Is # a field name? Name and Date shouldn't be, those are reserved words and will make writing code/queries difficult, I suggest you change them. Also, you should have an autonumber primary key to uniquely identify records in your table--which you kind of need for what you are asking.
Then build a new query using sub1 and your table. Link them via # or Name fields and also the Date to MaximumDate. Then bring all the values from the table into the query and that will show you what you want.