Hello. I wish to create four conditions in order to create an action:
a) Trigger description is like "Eventlog Application Error"
b) Trigger description is like "Eventlog System Error"
c) Trigger description is not like "BE"
d) Trigger severity >= "High"
If i add conditions in this order i get
(a or b or d) and (c)
But the correct logic should be
(a or b) and (c) and (d)
How can i do that?
a) Trigger description is like "Eventlog Application Error"
b) Trigger description is like "Eventlog System Error"
c) Trigger description is not like "BE"
d) Trigger severity >= "High"
If i add conditions in this order i get
(a or b or d) and (c)
But the correct logic should be
(a or b) and (c) and (d)
How can i do that?
), boolean expressions can be either all OR, or all AND, but AND/OR also looks quite random.
Comment