Forum Discussion
ActionBranchingConditionNotSatisfied
- Mar 08, 2024
If you don't need customized email body, you can also use the Rules feature in SharePoint lists: Rules in SharePoint Online/Microsoft Lists.
Or in Power automate, you can check condition like:
Expression used:
empty(triggerOutputs()?['body/AssignedTo/DisplayName'])
Where AssignedTo is an internal name of your Assigned to column in SharePoint list. You can get the internal name of your SharePoint list columns by following this article: How to find the Internal name of columns in SharePoint Online?
Note: Right hand side false is also an expression and not a text/string. You have to add it using expression option as well.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Mihiranp your condition looks to be wrong as you've set it as Assignto is equal to nothing. If it is then the flow goes down the green if yes channel. But with your condition it doesn't know who to send the email to so the branching didn't work properly which is why you get that message.
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP Global (and classic 1967 Morris Traveller driver)
- MihiranpMar 08, 2024Copper ContributorHi Rob,
i'm planning to send an email to Assign to user,- Rob_ElliottMar 08, 2024Bronze ContributorBut you've got nothing on the right hand side of your condition! Instead of "contains" it should be "is not equal to "
- MihiranpMar 08, 2024Copper ContributorIt work,Thanks