+ Reply to Thread
Results 1 to 4 of 4

VBA create label with slideindex

Hybrid View

  1. #1
    Registered User
    Join Date
    01-21-2014
    Location
    Oregon, USA
    MS-Off Ver
    Excel 2007
    Posts
    74

    Re: VBA create label with slideindex

    I found this code, which works great. How can I turn the "deleteID" sub into an "updateID"? I need it to find the ID that matches and updates the Index to the current location.

    Sub addID()
    
        Dim osld As Slide
        Dim oshp As Shape
        Dim i As Integer
        
        Call deleteID
        
        For Each osld In ActivePresentation.Slides
            Set oshp = osld.Shapes.AddTextbox(msoTextOrientationHorizontal, 10, 10, 100, 20)
            With oshp
                .TextFrame.TextRange = CStr(osld.SlideID & "/" & osld.SlideIndex) 'adds slide ID and Index number
                .Tags.Add "ID", "yes"
            End With
        Next osld
        
    End Sub
    
    Sub deleteID()
    
        Dim osld As Slide
        Dim i As Integer
        
        For Each osld In ActivePresentation.Slides
            For i = osld.Shapes.Count To 1 Step -1
                If osld.Shapes(i).Tags("ID") = "yes" Then osld.Shapes(i).Delete
            Next i
        Next osld
        
    End Sub

  2. #2
    Registered User
    Join Date
    01-21-2014
    Location
    Oregon, USA
    MS-Off Ver
    Excel 2007
    Posts
    74

    Re: VBA create label with slideindex

    I'm close, but it is only updating one shape per slide. Often times I will have multiple shapes with the same tag.

    How can I cycle through all the shapes on each slide?


    Sub addID()
    
        Dim oSld As Slide
        Dim oShp As Shape
        Dim i As Integer
        
        'Call deleteID
        
        'For Each oSld In ActivePresentation.Slides 'for all slides
        Set oSld = ActiveWindow.View.Slide 'for only the active slide
            Set oShp = oSld.Shapes.AddTextbox(msoTextOrientationHorizontal, 10, 10, 100, 20)
            With oShp
                '.TextFrame.TextRange = CStr(osld.SlideID) 'adds slide ID number
                .TextFrame.TextRange = CStr(oSld.SlideID & "/" & oSld.SlideIndex) 'adds slide ID and Index number
                '.TextFrame.TextRange = CStr("Seq. " & osld.SlideIndex & "0") 'adds slide index number
                .Tags.Add "ID", CStr(oSld.SlideID)
            End With
        'Next oSld
        
    End Sub
    
    Sub deleteID()
    
        Dim oSld As Slide
        Dim slideSTR As String
        Dim i As Integer
        
        For Each oSld In ActivePresentation.Slides 'for all slides
            slideSTR = oSld.SlideID
            For i = oSld.Shapes.Count To 1 Step -1
                If oSld.Shapes(i).Tags("ID") = slideSTR Then oSld.Shapes(i).Delete
            Next i
        Next oSld
        
    End Sub
    
    Sub updateID()
    
        Dim oSld As Slide
        Dim oShp As Shape
        Dim oTemp As Shape
        Dim sTagValue As String
    
        On Error GoTo ErrorHandler
        
        For Each oSld In ActivePresentation.Slides 'for all slides
            sTagValue = oSld.SlideID
            For Each oShp In oSld.Shapes 'look at each shape on the slide
                'see if the tag has value we're after
                If oShp.Tags("ID") = sTagValue Then 'this is the shape we're after
                    oShp.TextFrame.TextRange = CStr(oSld.SlideID & "/" & oSld.SlideIndex)
                    Exit For
                End If
            Next
        Next oSld
        
    NormalExit:
        Exit Sub
         
    ErrorHandler:
        MsgBox "Error: " & Err.Number & " " & Err.Description
        Resume NormalExit
    
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. With a move label macro, prevent label from moving onto another label
    By SocratesJC in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 12-09-2014, 12:34 AM
  2. Chemical Inventory- Create unique number for each entry to label
    By wijoga in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-17-2013, 12:33 PM
  3. Create a Triangle in a label
    By frankish in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-29-2012, 08:03 AM
  4. How to send excel worsheet to create a label sheet
    By JOHN SIMPSON in forum Excel General
    Replies: 1
    Last Post: 07-05-2009, 04:13 PM
  5. create a sub label
    By skitols in forum Excel General
    Replies: 1
    Last Post: 05-28-2009, 12:18 PM
  6. [SOLVED] How can I create a label over a small chart?
    By Linds in forum Excel General
    Replies: 2
    Last Post: 11-07-2005, 07:36 PM
  7. [SOLVED] How do I create a column label in Excel?
    By Annette in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 02-21-2005, 03:06 AM

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