View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] fmgamboa@gmail.com is offline
external usenet poster
 
Posts: 2
Default Save As to a particular file location.

I have having using a macro to "save as" to a particular file
location. For some reason it was working and now it always saves the
file to "my document". I don't know what happened. Below is the code,
with the location I want to save it at in "local". Any ideas?

Sub save()
ActiveWorkbook.SaveAs FileFormat:=51,
Filename:=Sheets("dashboard").Range("B6").Value & " Weekly Report " &
Format(Date, "mmdd"), Local:="N:\Aarons Team\TSA Core Reports"
End Sub