Sub SaveToWeeklyFolder()
'This will save the file into the weekly folder as Tally Sheet mmddyyyy.xlsm
ChDir _
"G:\TPO\Shared\GUESTSERVICES\Guest Relations\Desktop Tracking\Current Week"
ActiveWorkbook.SaveAs Filename:= _
"G:\TPO\Shared\GUESTSERVICES\Guest Relations\Desktop Tracking\Current Week\Tally Sheet " & Format(Date - .17, "mmddyyyy") & ".xlsm" _
, FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
End Sub
Kevin