Consulting

Results 1 to 2 of 2

Thread: Capture Variable Text and Paste into Slide 1 Title 1

  1. #1

    Capture Variable Text and Paste into Slide 1 Title 1

    I have a .txt file that has variable text in it.

    I have my variable defined as FileContents

    I then remove the last 5 characters of the FileContents via:

    PPStrName = Left(FileContent, Len(FileContent) - 5)

    How do I paste PPTStrName? I was thinking something like this but this line of code below was a different way of copying and pasting code vs. the use of a variable.

    .Slides(1).Shapes("Title 1").TextFrame.TextRange.Paste

  2. #2
    ActivePresentation.Slides(1).Shapes("Title 1").TextFrame.TextRange = PPStrName

Posting Permissions

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