Scenario
I have the following excel sheet with values
What I need
I want to filter out values only when the following conditions met
If Status = "RO" OR Status = "SS" OR (Status = "NO" AND StartDate <>"") OR Status = "INVEST")
using excel filter with VBA.
This is a very big table and if it is possible through filtering techniques, it will be faster rather than doing comparison of values one by one and copy one by one. That is why I want to use filter. Is this possible?
A normal recording giving only the following which I can't figure out how to do in my situation
Eg: ActiveSheet.Range("$A$3:$D$21").AutoFilter Field:=4, Criteria1:="SS"
But how to check with filter if blank on start date and a particular value on Status?

