Hello All,
How to write multiple if conditions and their statement using Power Automate expressions ?
Really appreciate if anybody had worked out this before,
Thanks in advance,
Hi @AK88
You can write it in different ways
1. Nested If
Expression : if(condition1, if(condition2,'statement2','statement3'),'statement1')
Here we first validate condition1 if it is true, then we validate condition2, if condition 2 is True, then statement2 is executed else statement3 is executed.
If condition1 is False, then statement1 is executed.
Using And operation
If(and(expression1,expression2),'statement1','statement2')
Using Or operator
if(Or(expression1,expression2),'statement1','statement2')
Hope it helps 🙂
rpersad
16
David_MA
10
Super User 2025 Season 1
Michael E. Gernaey
8
Super User 2025 Season 1