Yes, that would evaluate the same. However, you should use the cell references where the formula(s) are being entered.Could have been ($A$1:A1) and it would have worked the same.
Thank you, yes it indeed makes sense. Cool alternative.
Yup, got it.
Thanks Biff, as well described by Aladin the formula does count the rows, just a way the get the 1st then 2nd then 3rd position ect (k).
Could have been ($A$1:A1) and it would have worked the same.
Noted Aladin.
I would have definitely thought ROWS and COLUMNS as being non-volatile. But correct me if I am wrong, regardless of the content of the cell, ROWS($A$1:A1) would return the row number right?
I mean to say if in A1 to A5 we have volatile formulas such as the ones described in the link you posted, the Row number would still work... no?
This said, Yes using the first cell in which the target formula is entered as anchor, will definitely make it easier to maintain.
Thanks again, learned something new.
Yes, it will still work.
I have ever introduced and used
ROW()-ROW($C$2)+1
which is volatile because ROW() is volatile. ROWS($C$2:C2) is definitely better.
I saw something similar to that in here: link.
It was in a Named range the formula was
=ROW(Sheet1!$D$2:$D$8)-ROW(Sheet1!$D$2)+1
So this was volatile, right?