Hi - I would like the following "Todays date is" & today() to be displayed as
Todays date is 6/13/2007. the today() resolves to the system number. how can
I write the format in the concatenate function?
Mike H - 13 Jun 2007 21:11 GMT
Try this
=A1&" "&TEXT(B1,"dd-mm-yyyy")
Text in a1 and date in B1
Mike
> Hi - I would like the following "Todays date is" & today() to be displayed as
> Todays date is 6/13/2007. the today() resolves to the system number. how can
> I write the format in the concatenate function?
Teethless mama - 13 Jun 2007 21:17 GMT
="Today date is "&TEXT(TODAY(),"m/d/yyyy")
> Hi - I would like the following "Todays date is" & today() to be displayed as
> Todays date is 6/13/2007. the today() resolves to the system number. how can
> I write the format in the concatenate function?
sangee - 14 Jun 2007 00:45 GMT
Thanks Mike H and Teethless Mama. Right after this post I searched again and
good old google came to my rescue as well
> Hi - I would like the following "Todays date is" & today() to be displayed as
> Todays date is 6/13/2007. the today() resolves to the system number. how can
> I write the format in the concatenate function?