I try to COUNTIF(B2:Q2;">5") for each row and return the result for each row in column A but I clearly fail on using ARRAYFORMULA for this purpose.
COUNTIF(B2:Q2;">5")
A
ARRAYFORMULA
Could you help?
In addition to Max's solution, I believe it should be possible to use COUNTIF(). See if this works
=ARRAYFORMULA(COUNTIF(IF(B2:Q>5,ROW(B2:B)), ROW(B2:B)))
2.1m questions
2.1m answers
60 comments
57.0k users