Note: this is an array formula that must be entered with Control + Shift + Enter. If you’re entering this on the worksheet (and not inside another formula), make a selection that includes more than one row, enter the formula, and confirm with Control + Shift + Enter. This is formula will continue to generate relative numbers even when the range is moved. However, it’s not a good choice if rows need to be sorted, deleted, or added, because the array formula will prevent changes. The formula options explained here are will work better. The second ROW function generates an array with just one item like this: which is then subtracted from the first array to yield: Finally, 1 is added to get:

Generic version with named range

With a named range, you can create a more generic version of the formula using the MIN function or the INDEX function. For example, with the named range “list”, you can use MIN like this: With INDEX, we fetch the first reference in the named range, and using ROW on that: You’ll often see “relative row” formulas like this inside complex array formulas that need row numbers to calculate a result.

With SEQUENCE

With the SEQUENCE function the formula to return relative row numbers for a range is simple: The ROWS function provides the count of rows, which is returned to the SEQUENCE function. SEQUENCE then builds an array of numbers, starting with the number 1.  So, following the original example above, the formula below returns the same result: Note: the SEQUENCE formula is a new dynamic array function available only in Excel 365.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.