D DashboardNovice Member Oct 23, 2014 #1 Cell G3 = September. Cell H3 = 2014. Is it possible to join these two so that I can return the date September 1, 2014?
Cell G3 = September. Cell H3 = 2014. Is it possible to join these two so that I can return the date September 1, 2014?
Somendra Misra Excel Ninja Oct 23, 2014 #2 Hi, Use below formula: =DATE(H3,MONTH(G3&1),1) For Text format try below: =TEXT(DATE(H3,MONTH(G3&1),1),"mmmm d, yyyy") Regards,
Hi, Use below formula: =DATE(H3,MONTH(G3&1),1) For Text format try below: =TEXT(DATE(H3,MONTH(G3&1),1),"mmmm d, yyyy") Regards,
Khalid NGO Excel Ninja Oct 31, 2014 #3 Hi, Here is another one: =DATEVALUE(G3&H3) Format the date as required. Regards,