I created a new table and put the value “3” in A1 and “4” in A2.
What I would like to do is: =ROW(ADDRESS(MATCH(A1,A1:A2,0),1,4))
That produces “Err:504”.
This works (result is “1”): =ROW(A1)
This works (result is “A1”): =ADDRESS(MATCH(A1,A1:A2,0),1,4)
I have also tried: =CELL(“ROW”,ADDRESS(MATCH(A2,A2:A3,0),1,4))
That produces “#REF!”
Am I missing something obvious or is there another way to do this?