A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Is there any easy way except the one you mentioned above?
I have not mastered the SUMPRODUCT formula.
If you think that there is no other way, pls explain the formula you framed.
How many dashes here after the first bracket? in =SUMPRODUCT(--(
Hi,
If you don't like SUMPRODUCT then you can do it like this. With this formula it doesn't matter if 2013 is text or a number it will be counted
=COUNTIF('101'!C1:C324,"2010-11")+COUNTIF('101'!C1:C324,"2011-12")+COUNTIF('101'!C1:C324,"2013")
With the sumproduct formula this ISNUMBER(MATCH bit test every cell in the range for any of the 3 values and it returns an array of TRUE:FALSE etc. SUMPRODUCT can't work with TRUE ot FALSE so we use the -- to coerce TRUE into 1 and FALSE into zero and then sumproduct adds them up.