Sorting

M

MikeG

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.
 
D

Douglas J Steele

Try doing a Requery of the form after you process the addition. This would
be as simple as Me.Requery
 
Top