A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
It depends on your setup of course.
You could write a bit of code in the commandbuttons click event, something like:
Private Sub CommandButton1_Click()
With Worksheets("sheet1")
.Select
.UsedRange.AutoFilter 1, ComboBox1.Value
End With
End Sub
The code filters sheet1 on column A using the content of combobox1.