Forum Discussion
Dina63
Mar 26, 2019Copper Contributor
Excel Countifs
In excel I would like to count the number of measurements in column G if the condition in column C is fulfilled. Problem is that in column C I have three different conditions which should be consider...
SergeiBaklan
Mar 26, 2019Diamond Contributor
Dina63 , depends on which conditions. If they are constants that could be
=SUM(COUNTIF(G1:G600,{cond1, cond2, cond3}))
or, and if not
=COUNTIF(G1:G600,cond1)+COUNTIF(G1:G600,cond2)+...