I am trying to use the Trigger Condition to automate a Flow.
(I am using a Patch statement to change the RequestStatus to New when an item is updated).
Error
Solved! Go to Solution.
Try putting single quotes around New.
Try putting single quotes around New.
Hi @Kathomsen ,
The trigger Condition should as below if the RequestStatus column is single line of text type:
@equals(triggerBody()?['RequestStatus'],'New')
And if the RequestStatus column is Choice type, you should take a try with expression below:
@equals(triggerBody()?['RequestStatus']?['Value'],'New')
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks so much! (Couldn't see the forest through the trees on that one!)
User | Count |
---|---|
89 | |
37 | |
26 | |
13 | |
13 |
User | Count |
---|---|
127 | |
54 | |
38 | |
24 | |
21 |