Why isn't there a function to return the row number?

Greg Arnson
✭✭✭✭✭✭
We have [column]@row. Why not =ROW()? I really need a column formula that returns the row number.
Tags:
0
Best Answer
-
Insert an auto-number type column (called "Auto" in this example). Then insert a text/number type column and use this column formula:
=MATCH([email protected], Auto:Auto, 0)
thinkspi.com
0
Answers
-
Insert an auto-number type column (called "Auto" in this example). Then insert a text/number type column and use this column formula:
=MATCH([email protected], Auto:Auto, 0)
thinkspi.com
0 -
Thank you! I had a crude formula =COUNTIFS(Column$1:[email protected], OR(ISBLANK(@cell), NOT(ISBLANK(@cell)))) that could not be a column formula. Your formula allows me to make it a column formula. Much appreciated.
0