Date reverts to numeric format

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?
 
J

Jacob Skaria

Try the below
=TEXT(A1,"mmm d, yyyy")

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

If this post helps click Yes
 
D

David Biddulph

=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"
 
M

ManhattanRebel

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





.
 

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

Top