Hello,
My data set includes rows from 2018 March to 2019 March. I'm using a filter like this:
[Year] != "2019" AND [Month] != "3"
I expected this to only exclude rows with Year=2019 and Month=3. Instead, it excludes all rows where Month=3 (for both 2019 and 2018) and all rows where Year=2019 (for January, February, and March).
Is there an alternative to my filter expression?
Also, I'd like to understand why AND/&& is behaving like an OR.
Thank you,
Hope