gojets1721
Registered User.
- Local time
- Today, 15:54
- Joined
- Jun 11, 2019
- Messages
- 430
Hi so my form has a button that when pressed, it filters down to certain entries. However when it filters, it no longer sorts the entries from oldest to newest by date. It's just randomly mixed up. Is there anyway to include something in the code that will sort from oldest to newest by date?
The VBA code that I am using for the button is:
The VBA code that I am using for the button is:
Code:
Private Sub btnNotStarted_Click()
DoCmd.ApplyFilter , "[Status]= 'Not Started'"
End Sub