Hi @yuchen1
not directly via filter. Because only OR is available.
But you could create a new calculated field where you use the condition with the AND to create a single value to filter.
e.g.
ifelse( Country is US or CA AND sales number > 1000, "us/ca",
ifelse( Country is MX AND sales number >500, "MX","none")
That way you can filter “us/ca” etc. Or
ifelse(( Country is US or CA AND sales number > 1000) OR ( Country is MX AND sales number >500, 1,0))