Forum Discussion
melwayconsultancy
Apr 14, 2023Copper Contributor
DATE to MONTH problem (TEXT function)
Hello everyone, I want to convert dates to months in the MONTH column. I tried the TEXT function, it worked for some dates but the other dates were unable to be converted. Some dates, such ...
HansVogelaar
MVP
See if this formula works for you:
=TEXT(IF(ISTEXT(B2),DATE(2000,LEFT(B2,FIND("/",B2)-1),1),B2),"mmmm")
Carola1225
May 10, 2024Copper Contributor
great help!!!!! thanks a lot!