Intermediate Power Automate
Dani Kahil
Solution Architect | Microsoft MVP


Filter Query is an OData expression — field, operator, value.
Status eq 'Active'
EndDate le '@{addDays(utcNow(), 60)}'
Status eq 'Active' and EndDate le
'@{addDays(utcNow(), 60)}'
Choice columns expect a quoted display label; dates expect a single-quoted ISO string wrapped in @{...}.

$$
Tip: If the filter can be expressed in the source's query language, run it at the source

Intermediate Power Automate