Forum Discussion
tzvikei
9 years agoMicrosoft Employee
Export to PowerPoint (Preview) feedback
This thread was created to gather feedback and communicate over the new Export to PowerPoint (Preview) feature in PowerBI.com. Ask questions, suggest features, or leave general feedback. We will ...
tabar
8 years agoHelper I
Hi, you have to first publish the report to the power BI online and then click on file and there you have the option.
https://powerbi.microsoft.com/de-de/blog/export-power-bi-report-to-powerpoint-preview/
https://powerbi.microsoft.com/de-de/blog/export-power-bi-report-to-powerpoint-preview/
Fraukje
8 years agoAdvocate II
Hi tabar,
Are you indicating there is an option to disable embedded links? I would be really interested to find out where this is exactly! Could you let me know where exactly this can be found?
- tabar8 years agoHelper I
I do not really know if you mean hyperlinks? By the way you can just delete all the links from pictures in power point with some macro. For example create a macro and copy these codes and run it:
Sub DeleteLinks()
Dim oSl As Slide
Dim x As LongFor Each oSl In ActivePresentation.Slides
For x = oSl.Hyperlinks.Count To 1 Step -1
oSl.Hyperlinks(x).Delete
Next
NextEnd Sub