Hello,
I have a flow that need to request approval for 6 approvers and register the decisions and comments for all into an ADO. Im try to register the comments into a Variable. Problem is that when the Comments is null this step give an error. So, Ive inserted a condition (when Response comments is equal to True set the variable) and even if with comments =True, the condition gives me the no answer.
Any suggestion to solve this?
Solved! Go to Solution.
Put a Coalesce() function around the response comment. Coalesce will work through the parameters from the left to the right and use the first one that isn't null. So something like the code below will guarantee that something always gets added to the variable. It also helps tracking which user's didn't supply comments.
Coalesce(ResponseComment,"No Comments")
Put a Coalesce() function around the response comment. Coalesce will work through the parameters from the left to the right and use the first one that isn't null. So something like the code below will guarantee that something always gets added to the variable. It also helps tracking which user's didn't supply comments.
Coalesce(ResponseComment,"No Comments")
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
63 | |
27 | |
22 | |
15 | |
15 |
User | Count |
---|---|
123 | |
47 | |
43 | |
35 | |
31 |