Excel VBA: recorra la forma de PowerPoint e identifique la línea de texto que no está en el rango de Excel

Excel VBA: recorra la forma de PowerPoint e identifique la línea de texto que no está en el rango de Excel

Estoy escribiendo una macro para identificar si las líneas de texto en forma de PowerPoint no están presentes en un rango de Excel.

La idea en el último bucle es que si la línea de texto en la forma no se encuentra en el rango de Excel, se registra. No funciona porque el código devuelve todas las líneas de la forma, lo que significa que no se encontró ninguna, y si agrego una Notcondición, no devuelve ninguna línea, ni siquiera las que no están en el rango de Excel.

¿Algunas ideas?

Aquí está mi código:

Sub Updt_OrgChart_Test1()

Dim PPApp As PowerPoint.Application
Dim PPPres As PowerPoint.Presentation
Dim PPSlide As PowerPoint.Slide

Set PPApp = CreateObject("Powerpoint.Application")

PPApp.Visible = True


Set PPPres = PPApp.Presentations("presentation 2016.pptx")
Set PPSlide = PPPres.Slides(6)

Dim wb As Workbook
Dim teste_ws As Worksheet
Dim SDA_ws As Worksheet

Set wb = ThisWorkbook
Set teste_ws = wb.Sheets("Teste")
Set SDA_ws = wb.Sheets("FZ SW KRK SDA")

Dim shp As PowerPoint.Shape

Dim L5AndTeam As String
L5AndTeam = SDA_ws.Range("C3")
Dim Employee_Rng As Range
Set Employee_Rng = SDA_ws.Range(Range("B8"), Range("B8").End(xlDown))

For Each shp In PPSlide.Shapes
     On Error Resume Next
     If shp.TextFrame.HasText Then
       If shp.TextFrame.TextRange.Lines.Count > 2 Then
         If Left(shp.Name, 3) = "Rec" Then
            Dim prg As PowerPoint.TextRange
            For Each prg In shp.TextFrame.TextRange.Paragraphs
                Dim nm As String
                nm = prg
                If Employee_Rng.Find(nm.Value) Is Nothing Then
                   MsgBox nm  <---- this is just a test, will add more code here
                End If
            Next prg
           End If
        End If
     End If
Next shp

End Sub

Respuesta1

Quizás sea mejor iterar a través de la colección Párrafos o Líneas del TextRange de la forma. Ejemplo simple que asume un cuadro de texto seleccionado:

Sub Thing()

Dim oSh As Shape
Dim x As Long

Set oSh = ActiveWindow.Selection.ShapeRange(1)

If oSh.HasTextFrame Then
    With oSh.TextFrame.TextRange
        For x = 1 To .Paragraphs.Count
            Debug.Print .Paragraphs(x).Text
        Next
        For x = 1 To .Lines.Count
            Debug.Print .Lines(x).Text
        Next
    End With
End If

End Sub

Tenga en cuenta que puede desplazarse por párrafos o líneas (párrafo = ha escrito ENTER al final; línea = ha escrito un salto de línea o la línea ha sido dividida por ajuste de palabras)

información relacionada