Saving in Excel with dynamic filename
I'm trying to make a macro that makes a save of a workbook.
So far I managed to get the code but now I wanted to make the filename dynamic.
But I haven’t got the skill to make such a macro so all help is welcome.
The code I have so far is:
ChDir "H:\personal"
ActiveWorkbook.SaveAs Filename:= _
"H:\personal\personal.xls", FileFormat _
:=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:= _
False, CreateBackup:=False
I'm trying to make a macro that makes a save of a workbook.
So far I managed to get the code but now I wanted to make the filename dynamic.
But I haven’t got the skill to make such a macro so all help is welcome.
The code I have so far is:
ChDir "H:\personal"
ActiveWorkbook.SaveAs Filename:= _
"H:\personal\personal.xls", FileFormat _
:=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:= _
False, CreateBackup:=False