Reputation: 47
I want to apply the above formula to all the rows in a single column, however, unable to do so since arrayformula takes range and so does counta.
I tried applying brackets over the counta({D3:D},{R3:R}) but it didn't work.
Upvotes: 0
Views: 42
Reputation: 36880
Use BYROW()
function to iterate all rows and use other function to calculate per row result. Try-
=BYROW(D3:R,LAMBDA(rw,COUNTA(rw)/3))
Upvotes: 1