I have read and read but can't figure out how to do this...
I need to create a query that only pulls the records with the most recent date based on a field in the table (in the example below this field would be SSN).
So, for example, if this is my data:
ReminderNum SSN DateSent
1 333-99-8888 10/10/2003
2 333-99-8888 11/11/2003
3 444-99-8888 10/10/2003
4 444-99-8888 11/11/2003
Then I want the results to be:
ReminderNum SSN DateSent
2 333-99-8888 11/11/2003
4 444-99-8888 11/11/2003
Help!
Thanks,
Julia
I need to create a query that only pulls the records with the most recent date based on a field in the table (in the example below this field would be SSN).
So, for example, if this is my data:
ReminderNum SSN DateSent
1 333-99-8888 10/10/2003
2 333-99-8888 11/11/2003
3 444-99-8888 10/10/2003
4 444-99-8888 11/11/2003
Then I want the results to be:
ReminderNum SSN DateSent
2 333-99-8888 11/11/2003
4 444-99-8888 11/11/2003
Help!
Thanks,
Julia