Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
RonaldMussche
Frequent Visitor

Export data in power BI embedded

Hi,


We use power BI embedded in our organisation. But the export data function in the visuals are not visible. The function is available in the service (app.powerbi.com) but in the embedded environment it is gone. But it is visible in the power by the playground:


https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html


So it should work. We checked the settings in the report file and by calling the API client. But we can't find a setting to enable this in the embedded environment.


Hope someone can help.


Regards,
Ronald

1 ACCEPTED SOLUTION

Thanks for the help. This was not the problem. We are using a service principle and in our tenant setting a sequrity group was configured to allow export data. We removed the setting to the entire organisation and a couple of hours later it worked.

 

Kind regards,

Ronald

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Anyone can help about this, please?

JJasjko
Frequent Visitor

@RonaldMussche 
Hi, can you please elaborate on how you changed it? I would really appreciate it

v-xuding-msft
Community Support
Community Support

Hi @RonaldMussche ,

Please try like this:

  // Exports visual data
    visual.exportData(models.ExportDataType.Summarized, 100)
      .then(function (data) {
        Log.log(data);
      })
      .catch(function (errors) {
        Log.log(errors);
      });

Reference:

https://github.com/Microsoft/PowerBI-JavaScript/wiki/Export-Data

 

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for the help. This was not the problem. We are using a service principle and in our tenant setting a sequrity group was configured to allow export data. We removed the setting to the entire organisation and a couple of hours later it worked.

 

Kind regards,

Ronald

@RonaldMussche I have embedded a power bi report and a user is wondering how she can export the report. I found your post and solution here but cannot understand whether it applies to my situation, do you want more information about where the setting is that worked for you? 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors