Hi experts... I created a formula to convert dates into Quarters because we're trying to avoid buying the DigB add-in. Thing is I'm not sure how to have this formula skip the fields that are blank. Basically I want the formula to read the entire column, pick out dates (which it will read in the serial format) and then convert these to quarters. So for Jan-06 through Dec-06 my formula is:
=IF(A:A<=38777,"Q1",IF(AND(A:A>38777,A:A<38899),"Q2",IF(AND(A:A>38869,A:A<38991),"Q3",IF(A:A>=38991,"Q4",""))))
It works great except for the fact that it's populating blank fields where there is no entry. HELP!
=IF(A:A<=38777,"Q1",IF(AND(A:A>38777,A:A<38899),"Q2",IF(AND(A:A>38869,A:A<38991),"Q3",IF(A:A>=38991,"Q4",""))))
It works great except for the fact that it's populating blank fields where there is no entry. HELP!