• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula Date Question

I have 2 cells. A1 contains a Category (Facilities), and A2 contains the date (September 14, 2012)


when a I a formula to combine them together with some text, the date comes out as 41666 instead of Septeber 30, 2012 in the text.


=A1&"as of"&A2 gives me Facilities as of 41166. How can it be edited to give me Facilities as of September 14, 2012?
 
Hi rjacmuto32!


Use
Code:
=A1 & "as of" & TEXT(A2,"MMMM DD, YYYY")


Regards,

Deb
 
Hi rjacmuto32,


Happy to help..


PS: I guess.. you are talking about Capital letter "MMMMM".. not the small letter "mmmm"..

PPS: Is there any difference in output.. :)

PPS2: of the "," is the difference.. lol...


Regards,

Deb
 
Hi Deb ,


This is just BTW ; I know it's a typo in your earlier post , but =TEXT(Any date,"MMMM") and =TEXT(Any date,"mmmm") are the same ; both are different from =TEXT(Any date,"MMMMM") !


Courtesy Daily Dose of Excel ( www.dailydoseofexcel.com )


Narayan
 
Hi Narayan..


Thanks for the catch..

I must admit.. your EYES are much sharper than your HEAD in avatar..


This is also just BTW, that I have learn a New thing, how to print the 1st character of a Month.. LOL..


Regards,

Deb
 
Back
Top