J
Jack
I'm trying to open a group of files from a list starting at D5 on the Menu
worksheet.
Following is the code i have tried.
sub open_files()
dim fname
With ActiveWorkbook
fname = "c:\documents\" & .worksheets("Menu").range("D5").value & ".xls"
Workbooks.Open Filename:= fname
End With
End Sub
the macro stops at the workbooks.open step - help would be appreciated
worksheet.
Following is the code i have tried.
sub open_files()
dim fname
With ActiveWorkbook
fname = "c:\documents\" & .worksheets("Menu").range("D5").value & ".xls"
Workbooks.Open Filename:= fname
End With
End Sub
the macro stops at the workbooks.open step - help would be appreciated