Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, I would like to know if it's possible to export a report from Power Bi Server with code or It's just possible with power BI pro or embedded.
I have a report and I want to export to PDF or images.
Thanks.
Solved! Go to Solution.
Yes this is possible and you don't even need much code. The simplest way to do this is with URL parameters using the ReportServer endpoint (see https://docs.microsoft.com/en-us/sql/reporting-services/url-access-parameter-reference?view=sql-serv...)
Passing the url parameters something like the following would get you a PDF:
http(s)://<server>/ReportServer?<pathToReport>&rs:Command=Render&rs:Format=PDF
And if your report has parameters you can pass those in on the url also.
This Methord http(s)://<server>/ReportServer?<pathToReport>&rs:Command=Render&rs:Format=PDF
is applicable to pbix reports in Power bi report server ?
HI @anthony_snk ,
maybe my solution is to easy but I would print it with the print function and configure the printer as PDF creator.
Best,
Kathrin
If this post has helped you, please give it a thumbs up!
Did I answer your question? Mark my post as a solution!
Yes this is possible and you don't even need much code. The simplest way to do this is with URL parameters using the ReportServer endpoint (see https://docs.microsoft.com/en-us/sql/reporting-services/url-access-parameter-reference?view=sql-serv...)
Passing the url parameters something like the following would get you a PDF:
http(s)://<server>/ReportServer?<pathToReport>&rs:Command=Render&rs:Format=PDF
And if your report has parameters you can pass those in on the url also.
Is it possible to specify an file name for the exported pdf file?
@JeremieB wrote:
Is it possible to specify an file name for the exported pdf file?
No, it defaults to the name of the report and there is no option to specify an alternate name
User | Count |
---|---|
11 | |
3 | |
3 | |
2 | |
2 |