I have a flow that is triggered by "When an item is created or modified", the flow purpose is to update a certain column when an item is created or when a column can been modified in said list item.
I have added a condition to the trigger;
@or(not(equals(triggerOutputs()?['body/Editor/Email'], 'example@example.com')), equals(triggerOutputs()?['body/{VersionNumber}'], 1))
This means that the flow will trigger if either:
- The modification was made by someone other than example@example
.com, or
- The
VersionNumber is 1.
If both conditions are false (i.e., the email matches and the version number is not 1), the flow will not trigger.
However, when an item is created, the flow does not trigger. I am lost on what I am doing wrong.
Any help appreciated.