View Single Post
 
Old 07-15-2014, 12:22 PM
gbaker gbaker is offline Windows 7 32bit Office 2010 32bit
Competent Performer
 
Join Date: May 2012
Posts: 111
gbaker is on a distinguished road
Default

I tried the code Bob gave me and it works except it goes to my C Drive and I want the path to be another network drive. How do I write that in.

Path = J:\ProgramOps\Exceptions Masters & Data\JPM\

Code:
Sub Saveandget()


FileName = Application.GetSaveAsFilename

MsgBox (FileName)

ThisWorkbook.saveas (FileName)


 Sheets("UPDATE").Select
    ActiveWindow.SelectedSheets.Delete





End Sub
Reply With Quote