Format date within text

R

Rick N

Is there a way to format a date that is included within text? For example:
="Today's date is "&now() displays the text and the serial number and any
attempt to format the date fails.
 
M

mzehr

Hi Rick
Try
="Today's date is "&TEXT(TODAY(),"MMMM DD,YYYY")
or some variant thereof.
 
Top