In Google Sheets, when using ArrayFormula with AND formula, I don't get the results as it should be.
A|B
2|7
In C1
I put formula as: =and(A1>5,B1>6)
then I get True
. If in D1 I put formula as: =ArrayFormula(and(A1:A>5,B1:B>6))
I get the results as False
.
Here are my two questions:
- Why is
ArrayFormula
not repeated for all cells in the column? - Why do I get
true
withoutArrayFormula
andFalse
withArrayformula
?