Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Selection.AutoFilter Field:=1, Criteria1:="YOUR CRITERIA HERE"[\code]
Hope this helps...
MEP
Range("B1").AutoFilter Field:=2, Criteria1:=cb_DeptNo.Text
If Len(names.Text) > 0 Then
Range("B1").AutoFilter Field:=1, Criteria1:=names.Text
End If
If Len(names.Text) > 0 Then
Range("B1").Select
Selection.AutoFilter
Selection.Range("B1").AutoFilter Field:=1, Criteria1:=names.Text
End If
ComboBox1.Clear
ComboBox1.AddItem "Colin"
ComboBox1.AddItem "Lisa"
ComboBox1.AddItem "Lyn"