C Captain Snuggles Nov 19, 2008 #1 I just want to be able to call an existing excel file, junk.xls, then save it as notjunk.xls. Any ideas?
I just want to be able to call an existing excel file, junk.xls, then save it as notjunk.xls. Any ideas?
J JLGWhiz Nov 19, 2008 #3 I think this will work. Sub Vert() myPath = ThisWorkbook.Path Set wb = Workbooks.Open Filename:=myPath & "\junk.xls" wb.SaveAs filename:="notjunk.xls" End Sub
I think this will work. Sub Vert() myPath = ThisWorkbook.Path Set wb = Workbooks.Open Filename:=myPath & "\junk.xls" wb.SaveAs filename:="notjunk.xls" End Sub