Date reverts to numeric format

  • Thread starter Thread starter ManhattanRebel
  • Start date Start date
M

ManhattanRebel

I have a date in this format May 1, 2009. I’d like to keep it in that format,
but when I concaternate it with another cell, the date converts to a numeric
format. How can I prevent this?
 
Try the below
=TEXT(A1,"mmm d, yyyy")

=TEXT(A1,"mmm d, yyyy") & A2

If this post helps click Yes
 
=TEXT(A1,"mmm d, yyyy")&" the text to which you want it concatenated"
or
=TEXT(A1,"mmmm d, yyyy")&" the text to which you want it concatenated"
 
Thank you... I appreciate your help.

David Biddulph said:
=TEXT(A1,"mmm d, yyyy")&" the text to which you want it concatenated"
or
=TEXT(A1,"mmmm d, yyyy")&" the text to which you want it concatenated"
--
David Biddulph





.
 
Back
Top