Hi All,
I have a flow which gets triggered from PowerApps when submit is clicked.
The code on submit to pass the parameters are:
If(
Radio1.Selected.Value = "Red" || Radio125_1.Selected.Value = "Amber",
DM&DDFlow.Run(
flowpn,
flowdm, (Email)
flowdd, (Email)
flowdmname, (DisplayName)
flowddname, (DisplayName)
CompetencyHead.Text,
Radio1.Selected.Value
)
);
All the values are correctly passed. I have given a condition to check if the Project name is equal to output of compose (which is "flowpn") but the condition block is always returning false.
Any help/suggestions on this?
Thanks in advance.