Ok this is driving me bonkers.
How do I combine these 2 onlick filters :
So that I can apply both with 1 button.
Thanks in advance
How do I combine these 2 onlick filters :
Code:
Private Sub ApplyTypeFilterBut_Click()
Dim FilterType As String
FilterType = "SupplierType =" & Me.TypeCombo.Column(0)
Me.Filter = FilterType
Me.FilterOn = True
End Sub
Code:
Private Sub LocationFilterBut_Click()
Dim FilterLocation As String
FilterLocation = Me.LocationFilter & "Tick"
Me.Filter = FilterLocation
Me.FilterOn = True
End Sub
So that I can apply both with 1 button.
Thanks in advance