Back to Help Index

Logical Operators for Filters

How are logical operators handled?

Logical operators in filters are handled by OR first, then AND, not sequentially.
This is more intuitive and mimics the english language.

For Example:

this AND that OR something AND else
= this AND ( that OR something ) AND else

this OR that OR something AND else
= ( this OR that OR something ) AND else

this OR that AND something OR else
= ( this OR that ) AND ( something OR else )


Back to Help Index