Hello,
I was testing filter tool using AND/OR.
This is the original input:

Here are output using 4 different filters:
1) IsNull([Field1]) AND IsEmpty([Field1]) --> only take into account the first expression, 'IsNull([Field1])'
![IsNull([Field1]) AND IsEmpty([Field1]).png IsNull([Field1]) AND IsEmpty([Field1]).png](https://us.v-cdn.net/6038679/uploads/images/d1/d123a4361f2ee2c8deddc7e3e3783d56.png)
2) !IsNull([Field1]) AND !IsEmpty([Field1]) --> desired output.
![!IsNull([Field1]) AND !IsEmpty([Field1]).png !IsNull([Field1]) AND !IsEmpty([Field1]).png](https://us.v-cdn.net/6038679/uploads/images/9b/9b54dd3c54092d4bb8af466bbdec0d86.png)
3)IsNull([Field1]) OR IsEmpty([Field1]) --> desired output
![IsNull([Field1]) OR IsEmpty([Field1]).png IsNull([Field1]) OR IsEmpty([Field1]).png](https://us.v-cdn.net/6038679/uploads/images/f1/f1fda00272aba19b943af8609941ad42.png)
4) !IsNull([Field1]) OR !IsEmpty([Field1]) --> take into account only the first expression '!IsNull([Field1])'
![!IsNull([Field1]) OR !IsEmpty([Field1]).png !IsNull([Field1]) OR !IsEmpty([Field1]).png](https://us.v-cdn.net/6038679/uploads/images/6a/6ae7260c694a2b6fcc20501366256da5.png)
Does anyone know the reason why negative expression will flip the logic of AND/OR?
Sincerely,
Kazumi