I want to implement a trigger condition based on a Choice Field in Dataverse.
This isnt synced with a global choice btw.
The Choice field is as follows:
"xxx_choice"
"Start" value 200.100.000
"In progress" value 200.100.001
"Completed" value 200.100.002
I want the Power Automate to trigger only when the Choice field is "Start"
Im based in the EU, so some syntax might differ from the US, but this is what I've come up with:
@equals(triggerOutputs()?['body/xxx_choice/Value'];'200100000')
@equals(triggerOutputs()?['body/_xxx_choice_label/Value']; 'Start')
Should these work or am I missing something?