Hiya,
The command is very simple:
SELECT a.field1, a.field2
FROM table a
WHERE *DATE = (SELECT MAX(*DATE)
FROM table b
WHERE b.primary_key = a.primary_key)
The substitute the field names that you want into the first select statement, and into the where clause of the subquery, change primary_key to whatever field is your unique reference (e.g. employee id etc.)
HTH
Tim