• Importing multiple files? (Office XP)

    Author
    Topic
    #413083

    Is there a way to set up a macro to do the following actions? :
    On Click
    Go to C:/My PowerPoint Presentations
    SelectAll (select all files in folder)
    Import all selected files

    ?

    Viewing 1 reply thread
    Author
    Replies
    • #908558

      You can open multiple files in PPT by using Shift Clicking to select multiple files when in the Open dialog. Use Ctrl Clicking to select files that aren’t grouped together.

      • #908582

        There’s no way to set up a macro?

        • #908584

          What exactly do you mean by import? Open in PowerPoint, or insert all slides from all presentations into the currently open presentation? (Neither seems particularly useful)

          • #908674

            Import all slides from particular presentations into current presentation….

            • #908690

              Does this do what you want?

              Sub InsertSlides()
              ‘ Path must include trailing backslash
              Const strPath = “C:My PowerPoint Presentations”
              Dim strFile As String
              strFile = Dir(strPath & “*.ppt”)
              Do While Not (strFile = “”)
              ActivePresentation.Slides.InsertFromFile strPath & strFile, ActivePresentation.Slides.Count
              strFile = Dir
              Loop
              End Sub

            • #908691

              Does this do what you want?

              Sub InsertSlides()
              ‘ Path must include trailing backslash
              Const strPath = “C:My PowerPoint Presentations”
              Dim strFile As String
              strFile = Dir(strPath & “*.ppt”)
              Do While Not (strFile = “”)
              ActivePresentation.Slides.InsertFromFile strPath & strFile, ActivePresentation.Slides.Count
              strFile = Dir
              Loop
              End Sub

          • #908675

            Import all slides from particular presentations into current presentation….

        • #908585

          What exactly do you mean by import? Open in PowerPoint, or insert all slides from all presentations into the currently open presentation? (Neither seems particularly useful)

      • #908583

        There’s no way to set up a macro?

    • #908559

      You can open multiple files in PPT by using Shift Clicking to select multiple files when in the Open dialog. Use Ctrl Clicking to select files that aren’t grouped together.

    Viewing 1 reply thread
    Reply To: Importing multiple files? (Office XP)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: