I'm banging my head against the wall with this issue hoping someone can point out a simple step that I've missed. Essentially I've been trying to use run a query against a powerbi dataset in power automate to get data from a powerbi report in to power automate. The instructions I'm finding all seem simple enough and I've followed them to the letter but my query is returning no results in the body, regardless of the report.
The steps I've taken here:
- connected to powerbi inside of the powerautomate
- copied the DAX query from PBI Desktop performance analyzer in to the query box of the power automate step
- tried to create a simple html table from the results.
When I run, I see that the body results are empty despite my powerbi dataset and DAX table containing data.
Any help would be huge! Thank you!!

My DAX query
// DAX Query
DEFINE
VAR __DS0Core =
SUMMARIZECOLUMNS(
ROLLUPADDISSUBTOTAL('Table'[Column2], "IsGrandTotalRowTotal"),
"SumColumn1", CALCULATE(SUM('Table'[Column1]))
)
VAR __DS0PrimaryWindowed =
TOPN(502, __DS0Core, [IsGrandTotalRowTotal], 0, 'Table'[Column2], 1)
EVALUATE
__DS0PrimaryWindowed
ORDER BY
[IsGrandTotalRowTotal] DESC, 'Table'[Column2]