Forum Discussion
To know about data validation techniques
- Anonymous1 year ago
Hi Kmanikanta ,
I recommend that you use Power Automate to export report to PDF or create report subscription. For report subscription, you can create subscription directly in the Service after publishing report to the Service. Email subscriptions for reports and dashboards in the Power BI service - Power BI | Microsoft Learn
Licenses: Power Automate license, Power BI Pro or PPU
Here's my test of creating a flow export report for your reference.
Original data.
Step1. Create measures for statistics.
Count = CALCULATE(COUNTROWS('Table'),ALL('Table'),'Table'[ID]=MAX('Table'[ID]))Total = COUNTROWS(ALL('Table'))Step2. Save and Publish report to Service.
Step3. Create Flow.
Best regards,
Mengmeng Li
hI Kmanikanta
DAX has some useful functions which some can be used in a calculated table, some within the DAX query view.
For example COLUMNSTATISTICS() can return the list of columns in each table, the min and max values as well as the cardinality. INFO.VIEW functions can return calculated tables.