COUNTIF

J

Jane

need to a COUNT when column G contains one criteria (Grades 1, 2, or 3) AND
column C contains another critera (any units over value of 0)
thanks! jane
 
F

Fredrik Wahlgren

Jane said:
need to a COUNT when column G contains one criteria (Grades 1, 2, or 3) AND
column C contains another critera (any units over value of 0)
thanks! jane

In some other column, insert

=IF(AND(OR(G1=1,G1=2,G1=3), C1>0),1,0)

At the end of this column, use the SUM function.

Best Regards,
Fredrik
 
Top