Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Export report with multiple filters as parameter

I am looking for a way to export report to file in image/pdf format with multiple filters applied as parameter using rest API. When accoring to https://docs.microsoft.com/en-us/rest/api/power-bi/reports/exporttofile#code-try-0 when the body is as follows, am getting error message as "Export report with more than one filter is not supported".

{
 format: "pdf",
 powerBIReportConfiguration:{
  reportLevelFilters:[{
   filter:"LOCAL/PS_SGMNT_VAL in ('MPC')"
  },{
   filter:"LOCAL/SYS_ID in (605)"
  }]
 }
}

3 Replies