Google Sheets ARRAYFORMULA to skip blank rows

Viewed 2376
3 Answers

use:

=ARRAYFORMULA(IF(A1:A="";;A1:A+1000))

enter image description here

I tried the others and they didn't work. This does though:

=ARRAYFORMULA(filter(A1:B;A1:A<>"";B1:B<>""))
Related