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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
stevenamani
Advocate II
Advocate II

Export Data from Visual

I am using the powerbi-client javascript library and working on exporting the underlying data behind a visual. In the 'rendered' event, I can successfuly pull the data and can inspect it in Chrome's debug console.

The problem I have however is that if I write the data to the page just using 'document.write(data)', the result doesn't seem to have any carrige returns or line feeds which are necessary to read into something like Excel. 

Is there a way around this?

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @stevenamani,

 

Did you try the demo here? And the source code? You can export a JSON type data. 

 

Best Regards,

Dale

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

I followed their example on the showcase page:

 

visuals[i].exportData(models.ExportDataType.Underlying)
.then(function (result) {
console.log(result.data);
})
.catch(function (errors) {
console.log(errors);
});

 

The result.data is just a long string and result has no other properties. Not sure how I would get JSON from this object.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.