Hi I'm trying to create a Power automate flow what triggers when certain conditions are met. The idea is there is 4 situations where i want the flow to start
@And(equals(triggerOutputs()?['body/MatterStatus/Value'], 'Closed'), equals(triggerOutputs()?['body/EmailSentToUser'], false))
@And(equals(triggerOutputs()?['body/MatterStatus/Value'], 'Open'), equals(triggerOutputs()?['body/EmailSentToUser'], false))
@And(equals(triggerOutputs()?['body/MatterStatus/Value'], 'Open'), equals(triggerOutputs()?['body/EmailSentToUser'], true))
@And(equals(triggerOutputs()?['body/MatterStatus/Value'], 'Closed'), equals(triggerOutputs()?['body/EmailSentToUser'], true))
I have added one in as a trigger condition and that worked but when i added a 2nd in the flow didn't trigger.
Can someone spot something i cant? or if this is even possible? Im new to all of this so any support would be appreciated