I suspect that you want the Person (SSAN??) and the Most Recent Trip - which is:SELECT SSAN, MAX(Date_of_Trip) AS Most_Recent_Tripfrom TblTRIPSGROUP BY SSAN
but you also want the location OF that most recent trip, and that you could do something like:SELECT SSAN, Location, Most_Recent_TripFROM TblTRIPS AS T JOIN ( SELECT SSAN, MAX(Date_of_Trip) AS Most_Recent_Trip from TblTRIPS GROUP BY SSAN ) AS X ON X.SSAN = T.SSAN AND X.Most_Recent_Trip = T.Date_of_Trip
If a person made two trips on the same "most recent trip" date you will get two rows for them.