employee06
Board Regular
- Joined
- Nov 1, 2006
- Messages
- 113
I'm assigning a macro to run to a shape in my presentation.
with this macro, in a module, I want it to open an excel file on my floppy drive (a:\complexity factor.xls) once its clicked on.
here is the code I've tried to use.
All the help is appreciated!
with this macro, in a module, I want it to open an excel file on my floppy drive (a:\complexity factor.xls) once its clicked on.
here is the code I've tried to use.
Code:
Sub ClickHere_()
msoFileTypeExcelWorkbooks.Open FileName:="a:\Complexity Factor.xls", _
ReadOnly:=msoTrue
End Sub
All the help is appreciated!