Hey Cgangweg01,
Hmmm, I'm not able to get that solution to work on my end. I think part of it could be related to the JSON array that I have:
{
"name":"Non-EmptyReports",
"value":[
{
"PBIReport1":"https://app.powerbi.com/groups/group1/reports/report1/ReportSectionf1?experience=power-bi",
"PBIReport2":"https://app.powerbi.com/groups/group1/reports/report2/ReportSectionf1?experience=power-bi"
}
]
}
I think to get your solution to work, I would need to load each row of this JSON into separate values like:
{
"body": [
{"PBIReportURL":"https://app.powerbi.com/groups/group1/reports/report1/ReportSectionf1?experience=power-bi"},
{"PBIReportURL":"https://app.powerbi.com/groups/group1/reports/report2/ReportSectionf1?experience=power-bi"}
]
}
Is there a way to do this without looping through the output?