How can I change NOW() to a date when combined with text?

  • Thread starter Thread starter djenk2
  • Start date Start date
D

djenk2

How can I get the NOW() to display a date and not a number? Cell is formated
in date format. THANKS to the brain that figures this one out.

="^ ^ ^ 2008 Info Current As Of "&(NOW()) &(" ^ ^ ^")
 
Do it like this:

="^ ^ ^ 2008 Info Current As Of "&TEXT(NOW(),"dd/mm/yyyy") &" ^ ^ ^"

Hope this helps.

Pete
 
djenk2 said:
How can I get the NOW() to display a date and not a number? Cell is formated
in date format. THANKS to the brain that figures this one out.

="^ ^ ^ 2008 Info Current As Of "&(NOW()) &(" ^ ^ ^")


="^ ^ ^ 2008 Info Current As Of "&TEXT((NOW()),"MM/DD/YY") &(" ^ ^ ^")
 
You already got the answer but unless you need the time you are better off
using TODAY() instead of NOW

--


Regards,


Peo Sjoblom
 
Thank you Glenn for your brain power and surprisingly quick answers. Man am
I impressed. Oh yea: All of the answers worked great.

«¤»¥«¤»
David
«¤»¥«¤»
 
Thank you Pete_UK for your brain power and surprisingly quick answers. Man am
I impressed. Oh yea: All of the answers worked great.

«¤»¥«¤»
David
«¤»¥«¤»
 
Thank you Peo for your brain power and surprisingly quick answers. Man am I
impressed. Oh yea: All of the answers worked great.

«¤»¥«¤»
David
«¤»¥«¤»
 
Well, thanks for feeding back, David.

Pete

Thank you Pete_UK for your brain power and surprisingly quick answers. Man am
I impressed. Oh yea: All of the answers worked great.

«¤»¥«¤»
David
«¤»¥«¤»







- Show quoted text -
 
Back
Top