Sorting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using a form to enter timecards into. The problem I am having is that
the timecards are not sorted after each is entered. I have to exit the form
and then re-enter for them to be sorted in ascending order. The form is based
on a query. The TimecardNumber field is key indexed.
 
Try doing a Requery of the form after you process the addition. This would
be as simple as Me.Requery
 
Back
Top