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")
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
25 | |
24 | |
23 | |
23 | |
17 |
User | Count |
---|---|
57 | |
39 | |
37 | |
29 | |
28 |