Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7625957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:15:42+00:00 2026-05-31T05:15:42+00:00

Is it possible to open all types of files from excel vba with just

  • 0

Is it possible to open all types of files from excel vba with just the file path? Right now I can open workbooks with the simple:

Workbooks.Open myDestFilePath 

but what if myDestFilePath is really a .pptx file or whatever else?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:15:42+00:00Added an answer on May 31, 2026 at 5:15 am

    You can absolutely use Excel VBA to automate other apps, but you need to use the correct application object for the task. If you’re trying to open PowerPoint files, you will need to use PowerPoint to do it. Here’s a crude example:

    'remember to add the powerpoint object library (Tools->References)
    Sub OpenPPTFile()
        Dim pptApp As PowerPoint.Application
        Dim pptPres As PowerPoint.Presentation
    
        Set pptApp = New PowerPoint.Application
    
        Set pptPres = pptApp.Presentations.Open("filename.pptx")
    
        'here you can add code to have powerpoint do all kinds of nifty things to your file
    
        pptPres.Close
    
        pptApp.Quit
    
        Set pptPres = Nothing
        Set pptApp = Nothing
    End Sub
    

    So if your question is “Can I use Excel to open files created by other apps”, the short answer is no. However, if the question is “Can I use Excel VBA to automate other applications to perform operations on non-Excel files?” the answer is yes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What all possible support is there from open source world for building web based
Is it possible to open the .xlsx file on UIWebView . I can't open
Possible Duplicate: Open child browser window from child window I have a list of
Is it possible to open the same file in two separate windows in Xcode.
Is it possible to open a PDF from a website in Safari in order
I know its possible to open an app from mobile safari using custom URL
If I were to open a file with Vim from the command prompt (eg:
How can I access the currently opened project's types(classes) from a Visual Studio add-in(be
Possible Duplicate: iPhone - file properties Hi all. i m creating an application which
Is it possible to open another PHP file (print_array.php) passing $array via PHP function?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.