Home > OS >  Google Sheets ARRAYFORMULA to skip blank rows
Google Sheets ARRAYFORMULA to skip blank rows

Time:01-06

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: enter image description here

CodePudding user response:

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

  •  Tags:  
  • Related