2

How to make my ARRAYFORMULA(A1 + something else) to stop producing results after there are no more values in A1 column, eg. to skip blank values. By default it gives endlessly "something else".

Here is my demo sheet: https://docs.google.com/spreadsheets/d/1AikL5xRMB94BKwG34Z_tEEiI07aUAmlbNzxGZF2VeYs/edit?usp=sharing

Actual data in column A1 is regularly changing, rows are being added.

player0
  • 124,011
  • 12
  • 67
  • 124
vasja pupkin
  • 45
  • 1
  • 1
  • 5

3 Answers3

2

use:

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

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124
2

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

=ARRAYFORMULA(filter(A1:B;A1:A<>"";B1:B<>""))
Suraj Rao
  • 29,388
  • 11
  • 94
  • 103
Antonio
  • 21
  • 2
1

You can try this formula =ARRAYFORMULA(IF(ISBLANK(A1:A),"",(A1:A + B1:B))) if this works out for you.

enter image description here

Reference:

https://support.google.com/docs/answer/3093290?hl=en

Century Tuna
  • 1,378
  • 1
  • 6
  • 13