Intermediate Power Automate
Dani Kahil
Solution Architect | Microsoft MVP


Source · Change type · Scope — three fields that control when the trigger fires

@equals(
triggerOutputs()?['day'],
'Monday'
)
@greater(
item()?['priority'],
'High'
)
@contains(
triggerBody()?['subject'],
'urgent'
)
equals, greater, and, or — same OData syntax
Trigger condition rejects → run still counts{{1}} · Filter rows rejects → no run, no cost

Intermediate Power Automate