EASY: Format NOW as mm/dd/yyyy

  • Thread starter Thread starter pauloreiss
  • Start date Start date
P

pauloreiss

I have this simple function:

="Sales of: " & NOW()

But this way the date is appears with that Excel code like
33046,30184. I wanted to show 04/28/2006.
What is the function to set a format for the variable?

Something like =formatdate(now();mm/dd/yyyy)

Thanks!
 
Actually, you're pretty close....try this:

="Sales of: " & TEXT(TODAY(),"MM/DD/YYYY")

Does that help?

Regards,
Ron
 

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