AND strategy
What happens when there is an AND condition built in the automation rules?
With an AND condition, all conditions must be true for the rule to execute.
For example, you want to increase daily budget by 5% on the days of the month that most people get salary, and it must be a working day.
Example: Increase daily budget by 5% (max 10%) if:
Condition 1: Day of month is 22–28
ANDCondition 2: Day of week is Mon–Fri
Scenario | Date | Condition 1: Day of month is 22–28 | Condition 2: Day of week is Mon–Fri | Rule Result |
1 | Friday 26th | TRUE | TRUE | Budget +5% |
2 | Saturday 27th | TRUE | FALSE | No change |
3 | Monday 31st | FALSE | TRUE | No change |
OR Strategy
What happens when there is an OR condition build in the automation rules?
With an OR condition, at least one condition must be true for the rule to execute.
For example, you want to increase the daily budget by 5% on the days of the month that most people get salary or if it is a weekend day.
Example: Increase daily budget by 5% (max 10%) if:
Condition 1: Day of month is 22–28
ORCondition 2: Day of week is Sat–Sun
Scenario | Date | Condition 1: Day of month is 22–28 | Condition 2: Day of week is Mon–Fri | Rule Result |
1 | Friday 26th | TRUE | FALSE | Budget +5% |
2 | Saturday 27th | TRUE | TRUE | Budget +5% |
3 | Monday 31st | FALSE | FALSE | No change |
4 | Saturday 2nd | FALSE | TRUE | Budget +5% |