How to display what quarter a date falls in? 03/24/2009 = "Q1"
A Ashish Mathur Mar 24, 2009 #2 Hi, Use this formula. I have assumed that the date is in cell C6. ="Q"&IF(MOD(MONTH(C6),3)=0,MONTH(C6)/3,INT(MONTH(C6)/3)+1) -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com
Hi, Use this formula. I have assumed that the date is in cell C6. ="Q"&IF(MOD(MONTH(C6),3)=0,MONTH(C6)/3,INT(MONTH(C6)/3)+1) -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com