Is there a shorter way of doing this? please.
Basically, if A1 and A2 are greater than 0 at the same time, it should be counted as "1", if not 0, and then all results in the range are summed.
My data are like this:
13 17,2 7,6
22,23 14 9
11,22 14
Thank you.
HTML:
=IF(AND(A1>0,A2>0),1,0)+IF(AND(B1>0,B2>0),1,0)+IF(AND(C1>0,C2>0),1,0)
Basically, if A1 and A2 are greater than 0 at the same time, it should be counted as "1", if not 0, and then all results in the range are summed.
My data are like this:
13 17,2 7,6
22,23 14 9
11,22 14
Thank you.
Last edited: