A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Using some previous posts in this thread I have created a formula to convert a date into the format ""2nd September 2015"
I needed it in this exact format for adding a date into a mail merge from excel. "Your appointment has been cancelled on 2nd September 2015".
Just right clicking and changing the cell format was not adequate as it messed up my mail merge somehow.
the date "02-Sep" format was in L4
put this in L5:
=MID(TEXT(DATEVALUE(L4),"d/m/yy"),1,1)&MID("thstndrdthstndrdth",MATCH(IF(MOD(MID(TEXT(DATEVALUE(L4),"d/m/yy"),1,1),100)>29,MOD(MID(TEXT(DATEVALUE(L4),"d/
put this in L6:
=TEXT(DATE(2000,MID(TEXT(DATEVALUE(L4),"d/m/yy"),3,1),1),"mmmm")
put this in L7:
="20"&MID(TEXT(DATEVALUE(L4),"d/m/yy"),5,2)
You can then combine these 3 formulas in any way you want. I hope someone, somewhere also finds this useful as it took me a while.