Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saving in Excel with dynamic filename

Status
Not open for further replies.

Eseke

Technical User
Jan 23, 2007
9
NL
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
 
"Dynamic" filename - so it will change, right?
And you want it to change how?

Usually people do this by using Date or Time or both in a file name.

And I hope your file will be placed in "H:\personal\" and only "personal.xls" will be dynamic

Have fun.

---- Andy
 
Yes it was going to be a date specific file name
 
I usually construct the path and file name as a string to allow flexability.

Code:
sFileName = "personal.xls"
sPath = "H:\personal\" & sFileName

ActiveWorkbook.SaveAs Filename:= _
        sPath, FileFormat _
 
If you want:
"H:\personal\personal.xls"

to be

"H:\personal\personal070123.xls" YYMMDD format

You may do:
Code:
ActiveWorkbook.SaveAs Filename:= _
"H:\personal\personal"[b] & Format$(Date, "YYMMDD") & "[/b].xls", FileFormat _
:=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:= _
False, CreateBackup:=False



Have fun.

---- Andy
 
Thanks Andy.

But what do I do need to add to the code if I want to use it multiple times per day?
 
Format(Date, "YYMMDD_HHMMSS")

[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]

Help us help you. Please read FAQ181-2886 before posting.
 
Then you have to ask yourself:

Do I want to overwrite the file?
or
Do I want to keep it and have a Time in my filename?

What do you want to happen?

Have fun.

---- Andy
 
Thanks guys.

I wanted to keep the allready saved file.
But is it possible to have a systemtic number after the date? Like 20070127001
 
[blush]

[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]

Help us help you. Please read FAQ181-2886 before posting.
 
Sure you can have it.

Before saving the file, you just need to check if you have any file saved today, and what is the last number in the file name.

If it is
20070127001
add 1 and you will have
20070127002
next time check, add 1 and have
20070127003

Next day, start from the
20070128001


Have fun.

---- Andy
 
That was exactly what i had in mind Andy.
I have seen some macro's that can check if there is a file with that name. Will see how it will turn out.

But you have been a great help.


Thanks
 
Have a look at the Dir function.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top