Hello,
how can I get the condition from the choice field? I have only two choice roles and skills.
I want it to be picked role to create a new role in the table and the same for skill.
here I pick a skill and it adds a role.
thanks for the help.

Hello,
how can I get the condition from the choice field? I have only two choice roles and skills.
I want it to be picked role to create a new role in the table and the same for skill.
here I pick a skill and it adds a role.
thanks for the help.
Hi @Bambula,
It looks like you are comparing the request choice label value with the request choice id field of the selection. That is understandable, because normally only the id field is something you can select in the dynamic content list.
You can workaround this by using an expression with the label field instead.
Below is an example with a custom choice field.
The id field would be below
triggerOutputs()?['body/crca4_approvedstatus']
You can retrieve the related label field by adding a _ at the beginning and _label to the end.
triggerOutputs()?['body/_crca4_approvedstatus_label']
Or simply just go to the trigger outputs of an existing flow run and find the field with the label in it.