I am trying to sort by more then one column. I am not having any problems sorting on one column and my code is working fine when it is like this:
Private Sub Planner_Label_Click()
Call SortForm(Me, "Planner"
End Sub
When I am trying to sort by more then one column such as:
Private Sub Planner_Label_Click()
Call SortForm(Me, "Planner", "Planb"
End Sub
I get a compile error in my form stating:
“wrong number of arguments or invalid property assignment”
How can I change my VBA code to sort by more then one field.
Thanks a bunch!
Private Sub Planner_Label_Click()
Call SortForm(Me, "Planner"
End Sub
When I am trying to sort by more then one column such as:
Private Sub Planner_Label_Click()
Call SortForm(Me, "Planner", "Planb"
End Sub
I get a compile error in my form stating:
“wrong number of arguments or invalid property assignment”
How can I change my VBA code to sort by more then one field.
Thanks a bunch!