I have a SharePoint list with a choice field. There are several choices for the user to select from.
If I set this as my trigger condition
@contains(triggerBody()?['Action']?['Value'],'In Progress') Runs correctly.
@contains(triggerBody()?['Action']?['Value'],'Pending') Runs correctly.
However, I am trying to have the workflow run if the ACTION field contains either; "In Progress" or "Pending" Not sure how to write it. No matter what I've tried Power Automate says I have an error.
Ex: @or(contains(triggerbody()?[‘Action’],['Value'],'In Progress'),contains(triggerbody()?[‘Action’],['Value'],'Pending'))