B
bbotz
In 2003 Excel VBA, this code saved the name correctly:
Application.Calculation = xlCalculationAutomatic
ChDir "K:"
wNFileName = "k:Safety\" & Left(wFileName, Len(wFileName) - 4) & " " &
Format(Now(), "mmddyy") & ".xls"
ActiveWorkbook.SaveAs FileName:=wNFileName
ActiveWorkbook.Close
ChDir ".."
ActiveWorkbook.SaveAs FileName:="k:" & wFileName
So a file name of "Quota File MW 201003.xls" would save with exactly that
filename.
Just upgraded to 2007 and same code now saves
"Quota%20File%20MW%20201003.xls" which I assume is URL encoding. How can I
turn that off, or have Excel 2007 revert back to 2003 behavior??
Thanks!!
Application.Calculation = xlCalculationAutomatic
ChDir "K:"
wNFileName = "k:Safety\" & Left(wFileName, Len(wFileName) - 4) & " " &
Format(Now(), "mmddyy") & ".xls"
ActiveWorkbook.SaveAs FileName:=wNFileName
ActiveWorkbook.Close
ChDir ".."
ActiveWorkbook.SaveAs FileName:="k:" & wFileName
So a file name of "Quota File MW 201003.xls" would save with exactly that
filename.
Just upgraded to 2007 and same code now saves
"Quota%20File%20MW%20201003.xls" which I assume is URL encoding. How can I
turn that off, or have Excel 2007 revert back to 2003 behavior??
Thanks!!