Hi guys,
I currently have a sheet with a column that has different filterable criteria (eg Education, How to, Gaming, Style, Film)
I recorded a macro to filter by the criteria 'Film' - however I dont know how to make it so that if I make another macro for 'Gaming', it will not deselect 'Film'. The aim is that i will have two macros - one for film and one for gaming , and if i click both macros - both filters will be applied. If i click one, only that one will be applied etc.
This is what i have so far:
Sub FILMfilter()
Sheets("Master Locator Data").Select
ActiveSheet.Range("$A$1:$AQ$30000").AUTOfilter Field:=9, Criteria1:= _
"Film"
Sheets("Functions").Select
End Sub
Thanks again!
I currently have a sheet with a column that has different filterable criteria (eg Education, How to, Gaming, Style, Film)
I recorded a macro to filter by the criteria 'Film' - however I dont know how to make it so that if I make another macro for 'Gaming', it will not deselect 'Film'. The aim is that i will have two macros - one for film and one for gaming , and if i click both macros - both filters will be applied. If i click one, only that one will be applied etc.
This is what i have so far:
Sub FILMfilter()
Sheets("Master Locator Data").Select
ActiveSheet.Range("$A$1:$AQ$30000").AUTOfilter Field:=9, Criteria1:= _
"Film"
Sheets("Functions").Select
End Sub
Thanks again!