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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
We are embedding our Power Bi reports into our web application in iframes. We used the option File-> Embed Report-> Website or Portal.
Do we have the possibility to enable 'Print' provision using custom JavaScript. If yes then could you please share sample.
Thanks
To enable the print option for Power BI reports embedded in iframes on your web application, you can use JavaScript to interact with the iframe's content. Here's a sample code snippet that demonstrates how you can achieve this: KrogerFeedback
CODE:
// Find the iframe element by its ID
var iframe = document.getElementById('your-iframe-id');
// Access the content of the iframe
var iframeContent = iframe.contentWindow || iframe.contentDocument;
// Define a function to trigger the print dialog
function printReport() {
iframeContent.print();
}
// Example usage: Attach a click event listener to a button
document.getElementById('print-button').addEventListener('click', printReport);
In this code:
Implementation:
Identify the ID of the iframe element that contains your embedded Power BI report. Define a JavaScript function that will be responsible for triggering the print action. Attach an event listener to a button or any other element on your webpage. When the button is clicked, call the function that triggers the print action for the iframe's content.
Hi @GSP ,
As far as I concerned, Power BI is now unable to achieve what you need . You can submit an idea for it at https://ideas.powerbi.com/ideas/ and wait for users with the same needs as you to vote for you to help make it happen as soon as possible.
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
3 | |
2 | |
2 | |
2 |