Selecting multiple listbox items to set a filter
问题 I'm trying to select a YEAR and TYPE of business (1 or more) and then autofilter a column. That way I can use only 1 macro instead of making many for all the alternatives. (Year Select) (Type of Business) This is what I have at the moment: Private Sub Botton1_Click() Public Platform As String Public Year as Integer Platform = UserForm1.LB2.Text Year = UserForm1.LB1.value Unload UserForm1 End Sub ...... Private Sub UserForm_Initialize() With LB1 .AddItem "2016" .AddItem "2017" .AddItem "2018"