D
Dave
Access 2007
Based upon 3 fields. Caller (text field), Status (Combo), Inactive (Y/N)
I want to first sort alphabetically by caller
Then
Status = Ineligible
Then
Inactive
This is the attempt I made - which did not work.
Any help will be appreciated
Dave
Based upon 3 fields. Caller (text field), Status (Combo), Inactive (Y/N)
I want to first sort alphabetically by caller
Then
Status = Ineligible
Then
Inactive
This is the attempt I made - which did not work.
Code:
Private Sub cmdSortCaller_Click()
Me.OrderBy = "Caller"
Me.OrderBy = "Status = Ineligible" & " Desc"
Me.OrderBy = "Inactive" & " Desc"
Me.OrderByOn = True
End Sub
Any help will be appreciated
Dave