A family of Microsoft relational database management systems designed for ease of use.
You can change the RowSource query of the combo to sort by date DESCENDING to show the most recent record first. Perhaps even better, if the data entry folks will mainly be working with recent data, put a criterion on the query to only select recent dates:
SELECT DISTINCT [datefield] FROM yourtable WHERE [datefield] > DateAdd("m", -1, Date()) ORDER BY [datefield] DESC;
The DISTINCT will return one row per date; the WHERE clause will show only data from a month ago to now; and the ORDER BY will put the most recent date first.