Create Date

P

pjd

Hi

When creating a template in excel, is it possible to insert a "creatdate" as in word.
ie If i opened a new sheet based on the template could a cell have the date it was created (eg todays' date) and after it was saved and opened on another day, would it still have todays' date.

I hope this makes sense
 
B

Biff

Hi pjd!

=TODAY()

Biff
-----Original Message-----
Hi

When creating a template in excel, is it possible to
insert a "creatdate" as in word.
ie If i opened a new sheet based on the template could a
cell have the date it was created (eg todays' date) and
after it was saved and opened on another day, would it
still have todays' date.
 
R

RagDyeR

Have you tried:
<File> <Properties> <Statistics> tab.

This might be what you're looking to create, that already exists in all XL
WBs.
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

Hi

When creating a template in excel, is it possible to insert a "creatdate" as
in word.
ie If i opened a new sheet based on the template could a cell have the date
it was created (eg todays' date) and after it was saved and opened on
another day, would it still have todays' date.

I hope this makes sense
 
B

Bob Phillips

You probably need VBA for this

Private Sub Workbook_Open()
Worksheets(1).Range("A1").Value =Format(Date,"dd mmm yyyy")
End Sub

This goes in the ThisWorkbook code module.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

pjd said:
Hi

When creating a template in excel, is it possible to insert a "creatdate" as in word.
ie If i opened a new sheet based on the template could a cell have the
date it was created (eg todays' date) and after it was saved and opened on
another day, would it still have todays' date.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top