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.
ComboBox1.RowSource = "A1:A6"
Combobox1.clear
For Each r In Range("A6:A1000")
If rows(r.row).entirerow.visible = true and Len(r.Value) > 0 Then
ComboBox1.AddItem r.Value
End If
Next r
Sub ComboBox1_Click()
Sheets("Sheet1").Range("A6:C1000").Autofilter (Field:=1, criteria1:=ComboBox1.Value)
End Sub