i have a label with the following code:
Private Sub date_Label_Click()
Me.OrderBy = "date ASC"
Me.OrderByOn = True
End Sub
how can i change it so on the first click it will arrange by desending dates and on the second click arrange by assending dates?
Private Sub date_Label_Click()
Me.OrderBy = "date ASC"
Me.OrderByOn = True
End Sub
how can i change it so on the first click it will arrange by desending dates and on the second click arrange by assending dates?