Image Export converts PowerPoint slides to high-quality images.
PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
Resize your presentations quickly and without distortion
Language Selector switches the text in your presentation from one language to another
FixLinks prevents broken links when you distribute PowerPoint presentations
Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.
Ungroup every MSGraph chart in a presentation
Problem
You want to ungroup all of the charts in a presentation (perhaps in order to remove the data behind the graphs, leaving just a picture).
Solution
This macro will do the job in seconds:
Sub UngroupCharts()
' Note: this will only work on MSGraph charts, not Excel charts
' it won't work in PPT 2007
Dim oSh As Shape
Dim oSl As Slide
Dim x As Long
For Each oSl In ActivePresentation.Slides
For x = oSl.Shapes.Count To 1 Step -1
Set oSh = oSl.Shapes(x)
' is it an embedded object?
If oSh.Type = msoEmbeddedOLEObject Then
' is it a graph?
If InStr(oSh.OLEFormat.ProgID, "MSGraph") > 0 Then
' ungroup it
oSh.Ungroup
End If
End If
Next
Next
End Sub
Ungroup every MSGraph chart in a presentation
http://www.pptfaq.com/FAQ00934_Ungroup_every_MSGraph_chart_in_a_presentation.htm
Last update 07 June, 2011
Created: