V
VWP1
I am using VBA code behind a form, to sort as follows:
Private Sub ob_org_Click()
Me.OrderBy = "org"
Me.OrderByOn = True
End Sub
where org is the fieldname in the table. It works great. No problem.
I need to click either the same button or another button to sort the other
way (DESC).
Private Sub ob_org_Click()
Me.OrderBy = "org"
Me.OrderByOn = True
End Sub
where org is the fieldname in the table. It works great. No problem.
I need to click either the same button or another button to sort the other
way (DESC).