I have a flow that is trigger When an item is created or modified.
The current conditions is when a text column called "ConfirmStatus" value equals "BeforeApply" or "AfterApply".
If only one conditions as below, the flow is fine.
@or(equals(triggerBody()?['ConfrimStatus'], 'BeforeApply'))
But flow don't trigger when I add two conditions like:
@or(equals(triggerBody()?['ConfrimStatus'], 'BeforeApply'))
@or(equals(triggerBody()?['ConfrimStatus'], 'AfterApply'))
Can't figure out where I missed....
Any information will be appreciate! Thank you!