+ Reply to Thread
Results 1 to 3 of 3

Record a macro to copy a stop sign in Powerpoint

  1. #1
    Registered User
    Join Date
    09-04-2012
    Location
    GLASGOW
    MS-Off Ver
    Excel 2010
    Posts
    21

    Record a macro to copy a stop sign in Powerpoint

    I know that this is an excel forum but can you help?

    I have to put a stop sign on 40+ sheets in Powerpoint. I was wonder if there a quick way to copy the sign to all pages in one go.

    I would greatly appreciate any help.

  2. #2
    Registered User
    Join Date
    08-27-2010
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    76

    Re: Record a macro to copy a stop sign in Powerpoint

    Search PowerPoint help for "watermark".

  3. #3
    Registered User
    Join Date
    09-04-2012
    Location
    GLASGOW
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Record a macro to copy a stop sign in Powerpoint

    Yes I done want you suggested and searched the help for watermark. It did copy a shape to all sheets but the problem was it was not on the top and also you couldn't delete the shape when you had updated the sheet.

    I did manage to find a vba code on the internet that did the trick. This will copy a shape to all slides. The problem is that I don't understand the code.

    I have copied the code

    Sub CopyToAllSlides()

    Dim oSh As Shape
    Dim x As Long

    Set oSh = ActiveWindow.Selection.ShapeRange(1)
    oSh.Copy

    For x = 2 To ActivePresentation.Slides.Count
    ActivePresentation.Slides(x).Shapes.Paste
    Next

    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1