Workflow Automation: 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.
Examples
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 )
