Reputation: 781
I have a formula in D3 that look like this:
=IF(B3="","",B3-B2)
How do I fill the whole column D (from D3) with that formula using ArrayFormula?
Upvotes: 0
Views: 49
Reputation: 7773
=ARRAYFORMULA(IF(B3:B="",,B3:B-ARRAY_CONSTRAIN(B2:B,ROWS(B3:B),1)))
Upvotes: 2