ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Using macro to save as todays date (https://www.excelbanter.com/excel-programming/321685-using-macro-save-todays-date.html)

Momo

Using macro to save as todays date
 
Hello,

can someone help me,
I can write a macro to save the file as a single referenced cell, but can
anyone help me in creating a macro which either within the macro or by
referencing a cell returns a file named as "PA2005-01-05" or the date for the
current day.
I have used '=now()' in say cell A1 but am not sure how to put this through
a macro to give me a file name saved as the format "PA2005-01-05", please any
help,

many thanks

Andy

Nick Hodge

Using macro to save as todays date
 
Andy

Something like

ActiveWorkbook.SaveAs _
Filename:="PA" & Format(Now(), "yyyy-mm-dd") & ".xls"

Will save it to the default folder

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
HIS


"Momo" wrote in message
...
Hello,

can someone help me,
I can write a macro to save the file as a single referenced cell, but can
anyone help me in creating a macro which either within the macro or by
referencing a cell returns a file named as "PA2005-01-05" or the date for
the
current day.
I have used '=now()' in say cell A1 but am not sure how to put this
through
a macro to give me a file name saved as the format "PA2005-01-05", please
any
help,

many thanks

Andy




Bob Phillips[_6_]

Using macro to save as todays date
 
MyFile = "PA" & Format(Date,"yyyy-mm-dd") & ".xls"

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Momo" wrote in message
...
Hello,

can someone help me,
I can write a macro to save the file as a single referenced cell, but can
anyone help me in creating a macro which either within the macro or by
referencing a cell returns a file named as "PA2005-01-05" or the date for

the
current day.
I have used '=now()' in say cell A1 but am not sure how to put this

through
a macro to give me a file name saved as the format "PA2005-01-05", please

any
help,

many thanks

Andy




vidi

Using macro to save as todays date
 
may this help

sub savingfile()

'this eg i wish to save file in folder named c:\data

MyFileName = "C:\DATA\PA" & Date & ".XLS"

ActiveWorkbook.SaveAs Filename:=MyFileName, FileFormat:=xlNormal _
, Password:="", WriteResPassword:="",
ReadOnlyRecommended:=False, _
CreateBackup:=False

End Sub


My e-mail :


Tom Ogilvy

Using macro to save as todays date
 
fName = "PA" & format(date,"yyyy-mm-dd") & ".xls"

--
Regards,
Tom Ogilvy

"Momo" wrote in message
...
Hello,

can someone help me,
I can write a macro to save the file as a single referenced cell, but can
anyone help me in creating a macro which either within the macro or by
referencing a cell returns a file named as "PA2005-01-05" or the date for

the
current day.
I have used '=now()' in say cell A1 but am not sure how to put this

through
a macro to give me a file name saved as the format "PA2005-01-05", please

any
help,

many thanks

Andy




Momo

Using macro to save as todays date
 
Thanks all, the 1st reply worked great thanks,

Cheers for all the replies

Andy

"Tom Ogilvy" wrote:

fName = "PA" & format(date,"yyyy-mm-dd") & ".xls"

--
Regards,
Tom Ogilvy

"Momo" wrote in message
...
Hello,

can someone help me,
I can write a macro to save the file as a single referenced cell, but can
anyone help me in creating a macro which either within the macro or by
referencing a cell returns a file named as "PA2005-01-05" or the date for

the
current day.
I have used '=now()' in say cell A1 but am not sure how to put this

through
a macro to give me a file name saved as the format "PA2005-01-05", please

any
help,

many thanks

Andy






All times are GMT +1. The time now is 10:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com