if-statementgoogle-sheetsarray-formulasnested-ififs

Google Sheets ARRAYFORMULA to skip blank rows


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.


Solution

  • use:

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

    enter image description here