Consulting

Results 1 to 3 of 3

Thread: Convert linked charts to embedded

  1. #1

    Convert linked charts to embedded

    Howdy,

    Our lovely intern copied a bunch of excel charts into Powerpoint 2010 as linked and not embedded objects. Is there a macro to run that would convert these to embedded so we can send it to a client?



    Jeff

  2. #2
    Knowledge Base Approver VBAX Guru macropod's Avatar
    Joined
    Jul 2008
    Posts
    4,435
    Location
    Try:
    [VBA]Sub BreakLinks()
    Dim Sld As Slide, Shp As Shape
    On Error Resume Next
    For Each Sld In ActivePresentation.Slides
    For Each Shp In Sld.Shapes
    Shp.LinkFormat.BreakLink
    Next
    Next
    End Sub[/VBA]
    Cheers
    Paul Edstein
    [Fmr MS MVP - Word]

  3. #3
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,093
    Location
    The macro will do the job (breaking any other links though) but you do not need a macro to do this.

    File > INFO in the right pane near the bottom "edit links to files"

    Select the ones to break (ctrl click of shift click) and hit break links.
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •