The following portion of code should save the active workbook in a folder named "sent paysheets" and rename it with the date shown in cell F15 on the active sheet
run time error 438 object doesn't support this property or method results.
any ideas?
thanks for looking
Nick
Code:
ChDir "O:\Supervisors\sent paysheets"
ActiveWorkbook.SaveAs Filename:=Range("F15").xls, _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
run time error 438 object doesn't support this property or method results.
any ideas?
thanks for looking
Nick