Private Sub CommandButton1_Click()
Dim Cm1 As String, Cm2 As String, Cm3 As String
If ComboBox1.ListIndex < 0 Then Exit Sub
If ComboBox2.ListIndex < 0 Then Exit Sub
If ComboBox3.ListIndex < 0 Then Exit Sub
If Cells(1, 1).Value <> "店名" Then Exit Sub
Cm1 = ComboBox1.Value
Cm2 = ComboBox2.Value
Cm3 = ComboBox3.Value
ActiveSheet.AutoFilterMode = False
With Range("A1:C1")
.AutoFilter 1, Cm1
.AutoFilter 2, Cm2
.AutoFilter 3, Cm3
End With
End Sub