Hello. This is how my form currently displays:

As you can see, the dates are all messed up. I need them to show NEWEST to OLDEST.
The list of dates is pulled in from the following code:
Code:
Private Sub Date_Click()
DoCmd.OpenForm "Service Details", acNormal
Forms![Service Details]![CustomerID].Value = Forms![Vehicles]![CustomerID].Value
Forms![Service Details]![Service_Date].Value = Forms![Vehicles]![Service subform]!Date
Forms![Service Details]![Service Work Item Xref subform].Requery
End Sub
I am sure that this is a fairly simple fix, but I don't know it. If anyone can help, I would surely appreciate it!!!
Thanks,
DG