Excel VBA - Faça um loop pela forma do PowerPoint e identifique a linha de texto que não está no intervalo do Excel

Excel VBA - Faça um loop pela forma do PowerPoint e identifique a linha de texto que não está no intervalo do Excel

Estou escrevendo uma macro para identificar se as linhas de texto em um formato do PowerPoint não estão presentes em um intervalo do Excel.

A ideia do último loop é que se a linha de texto da forma não for encontrada no intervalo do Excel, ela seja gravada. Não está funcionando porque o código está retornando todas as linhas do shape, ou seja, nenhuma foi encontrada, e se eu adicionar uma Notcondição ele não retorna nenhuma linha, mesmo aquelas que não estão no intervalo do Excel.

Alguma ideia?

Aqui está o meu 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

Responder1

Talvez seja melhor iterar pela coleção Parágrafos ou Linhas do TextRange da forma. Exemplo simples que assume uma caixa de texto selecionada:

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

Observe que você pode percorrer parágrafos ou linhas (parágrafo = você digitou um ENTER no final; linha = você digitou uma quebra de linha ou a linha foi quebrada por quebra de linha)

informação relacionada