how can avoid considering of blank cells in IF function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the following formulas:
=IF(H8=J8,"1","0")+IF(H10=J10,"1","0")+IF(H12=J12,"1","0")
but is counting also the blank cells. I would like to compar the cells when
there are numbers (including zero) inside (not blank).
 
=(COUNT(H8,J8)=2)*(H8=J8)+(COUNT(H10,J10)=2)*(H10=J10)+(COUNT(H12,J12)=2)*(H12=J12)
 
Back
Top