Hi @Vaibhav B ,
Would you please try: @activity('Script1').output.resultSets.rows[0].DestCount
Thanks!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi I have, following Output from one activity, i want to select DestCount and pass it to the variable. How can i write it.
I am writing, @activity('Script1').output.resultSets.rows[0]['DestCount']
What am i missing here, Can anyone tell?
Thanks.
]3
Hi @Vaibhav B ,
Would you please try: @activity('Script1').output.resultSets.rows[0].DestCount
Thanks!
Hi @Vaibhav B ,
Thanks for posting query in Microsoft Q&A Platform.
Kindly consider writing expression as below to get value from highlighted DestCount
property of output JSON.
@activity('Script1').output.resultSets[0].rows[0].DestCount
.
Please check below video to understand how to pass or read values from output json of activity.
https://www.youtube.com/watch?v=2XfUKWwDi3g
Hope this helps. Please let us know if any further queries.
------------
Please consider hitting Accept Answer
button. Accepted answers help community as well.