Quote:
|
Originally Posted by shades
Actually not inconsistent, because one COUNTBLANK is an integer value and "" in the cell equates to 0. The other ISBLANK is Boolean looking at the contents of the cell, and in this case you have two characters " and " in the cell.
|
But if "" = 0 then I still see it as ISBLANK(0)=FALSE
If I put in the following:
A1 = BLANK
A2 = ""
A3 = 0
A4 = COUNTBLANK(A1:A3) = 2
B1 = IF(ISBLANK(A1),1,0) = 1
B2 = IF(ISBLANK(A2),1,0) = 0
B3 = IF(ISBLANK(A3),1,0) = 0
B4 = SUM(B1:B3) = 1
I just would expect COUNTBLANK(A1:A3) to be the same as
(PSUEDO) - SUM(IF(ISBLANK(Ax),1,0)