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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
How do I add the print and download/export report buttons in the PowerBI report that is embedded in a web application?
These buttons are present in the Power BI service:
But not available once the report is embedded.
Solved! Go to Solution.
Hi @Anonymous ,
To add print button and download button, you can get it by Javacript API:
// Embed the report
var embedContainer = $('#embedContainer')[0];
var config = {
type: 'report',
tokenType: models.TokenType.Embed,
accessToken: 'YOUR_ACCESS_TOKEN',
embedUrl: 'YOUR_EMBED_URL',
id: 'YOUR_REPORT_ID',
permissions: models.Permissions.All,
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false
}
};
var report = powerbi.embed(embedContainer, config);
// Add the print button
var printButton = $('#printButton');
printButton.on('click', function() {
report.print();
});
// Add the export button
var exportButton = $('#exportButton');
exportButton.on('click', function() {
report.exportData(models.ExportDataType.Summarized);
});
Best Regards
Hi @Anonymous ,
To add print button and download button, you can get it by Javacript API:
// Embed the report
var embedContainer = $('#embedContainer')[0];
var config = {
type: 'report',
tokenType: models.TokenType.Embed,
accessToken: 'YOUR_ACCESS_TOKEN',
embedUrl: 'YOUR_EMBED_URL',
id: 'YOUR_REPORT_ID',
permissions: models.Permissions.All,
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false
}
};
var report = powerbi.embed(embedContainer, config);
// Add the print button
var printButton = $('#printButton');
printButton.on('click', function() {
report.print();
});
// Add the export button
var exportButton = $('#exportButton');
exportButton.on('click', function() {
report.exportData(models.ExportDataType.Summarized);
});
Best Regards
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |