I am trying to create a file open macro that takes me to the “folder level” allowing me to browse thru the folder for the one I want. In recording a macro to edit, I had to pick a file. When I then delete that file name to stop at the folder level, the macro breaks. Thanks for the advice.
ChDir _
“C:Documents and SettingstorqLocal SettingsTemporary Internet FilesOLK5”
Workbooks.Open(Filename:= _
“C:Documents and SettingstorqLocal SettingsTemporary Internet FilesOLK5 test.xls ” _
).RunAutoMacros Which:=xlAutoOpen
End Sub
I don’t want to open test. I want to see all files. I guess this is a problem with editing those macro copies.