Hello all,
When I sort with the following code on a continuous form, it sorts...but it sorts the Upper case and Lower case separately. Is there a way to sort together?
Thanks in advance!
-Lory
When I sort with the following code on a continuous form, it sorts...but it sorts the Upper case and Lower case separately. Is there a way to sort together?
Code:
If Me.OrderBy = "field" Then
Me.OrderBy = "field DESC"
Else
Me.OrderBy = "field"
End If
Me.OrderByOn = True
Thanks in advance!
-Lory