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 ...
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?
tabar
8 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 Long
For Each oSl In ActivePresentation.Slides
For x = oSl.Hyperlinks.Count To 1 Step -1
oSl.Hyperlinks(x).Delete
Next
Next
End Sub