Date

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

Hello All,

I would like to convert the date that is generated by
the "Now()" formula in a work sheet to just the text of
the date.

i.e. result in text as 12/01/2004

Thanks in advance
 
ActiveCell.Value = Date
ActiveCell.Numberformat = "mm/dd/yyyy"
 
Not sure why you need text - you could just use

=TODAY()

and format it with Format/Cells/Date.

However, if you want it as text, use

=TEXT(TODAY(),"mm/dd/yyyy")
 

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

Back
Top