
Hi,
I've encountered error below. I have a trigger condition: @or(equals(triggerBody()?['Request_Type']?['Value'],'Manufacturer code Creation/change'))
wherein my Request_Type field is single line item type
The reason why I have that kind of trigger is that the Request_Type in PowerApps form is a cascading dropdown field (look-up value from the other SharePoint List). I just want my workflow run when the Request_Type value is equal to Manufacturer code Creation/change
How can I proceed? Kindly help please! Thanks
If request type is a single line of text please try
@or(equals(triggerBody()?['Request_Type'],'Manufacturer code Creation/change'))