Run other files from Excel

  • Thread starter Trond Fugleberg
  • Start date
T

Trond Fugleberg

Hi!

I want to run other files from excel. How can I do this? I
have some files *.RUN that I want to run.
Thanks!
 
D

Dave Peterson

I've never heard of *.run files, but if they were *.exe's or *.bat's, you could
use the Shell command.

If the extension .run is associated with another executable, maybe:

shell "start ""C:\myfile.run"""

would be ok
 
Top