I have a column in my dataset that is essentially a flag. The flags can be any number between 1 and 100.
I need to filter out 2s and 3s.
When I do my customer filter my syntax is as follows : [Field1]!=2 OR [Field1]!=3
The flow runs and nothing gets filtered out. However, when I try a custom filter to just see 2s and 3s using the following syntax it works fine: [Field1}=2 OR [Field1]=3
Why does it work for one but not the other?
Thanks in advance,