PL-200 · Question #131
A company plans to send escalation emails to all customers with overdue invoices. You are creating a Microsoft Power Automate flow to determine whether to send an escalation email. The system must sen
The correct answer is A. @GreaterOrEquals(TriggerEmail()?['OverdueDate']: '7'). Power Automate expressions use a function-based syntax. The correct function is greaterOrEquals(), which returns true if the first value is greater than or equal to the second. The @ prefix and ?['PropertyName'] bracket notation for accessing dynamic content are both standard Pow
Question
Options
- A@GreaterOrEquals(TriggerEmail()?['OverdueDate']: '7')
- B'OverdueDate' >= '7'?'TriggerEmail()': false
- CTriggerEmail() = 'OverdueDate' >= 7;
How the community answered
(30 responses)- A90% (27)
- B3% (1)
- C7% (2)
Explanation
Power Automate expressions use a function-based syntax. The correct function is greaterOrEquals(), which returns true if the first value is greater than or equal to the second. The @ prefix and ?['PropertyName'] bracket notation for accessing dynamic content are both standard Power Automate expression syntax. Option B uses SQL/spreadsheet comparison syntax, which is invalid in Power Automate. Option C uses a semicolon-delimited syntax that does not exist in Power Automate expression language.
Topics
Community Discussion
No community discussion yet for this question.