I'm trying to figure out if a series of 5 cells are blank or not using the ISBLANK arrayed function. The function seems to be returning the wrong result however. Anytime the first cell returns a "TRUE" value, the result will still read "FALSE".
For clarity's sake, I'll illustrate it out below. My data more or less looks like this:
|
A |
B |
C |
D |
| 1 |
{=ISBLANK(B1:D1)} |
50% |
|
|
| 2 |
{=ISBLANK(B2:D2)} |
|
50% |
|
| 3 |
{=ISBLANK(B3:D3)} |
|
|
50% |
When I evaluate the formula, the results will give me the following:
|
A |
B |
C |
D |
| 1 |
{FALSE, TRUE, TRUE} |
50% |
|
|
| 2 |
{TRUE, FALSE, TRUE} |
|
50% |
|
| 3 |
{TRUE, TRUE, FALSE} |
|
|
50% |
However, the final result seems to be inconsistent, as I receive the following:
|
A |
B |
C |
D |
| 1 |
FALSE |
50% |
|
|
| 2 |
TRUE |
|
50% |
|
| 3 |
TRUE |
|
|
50% |
Is there something particular about the first value that is forcing the function to return a "FALSE" result, when all the other values are returning a "TRUE" result?