Hi when i use this code, and try to choose a file to saveas, the code still appears to keep the same file name as the current workbook, it does not overide, am i missing something?
fName = Application.GetSaveAsFilename _
(InitialFileName:=Range("rngPath").Value, _
FileFilter:="Microsoft Excel workbook (*.xls), *.xls", _
Title:="Save As")
If fName = False Then Exit Sub
fName = Application.GetSaveAsFilename _
(InitialFileName:=Range("rngPath").Value, _
FileFilter:="Microsoft Excel workbook (*.xls), *.xls", _
Title:="Save As")
If fName = False Then Exit Sub