Try
=IF(LARGE(A$1:A$9,ROW())>0,MATCH(LARGE(A$1:A$9,ROW()),A$1:A$9,0),"")
and formula-copy down to row 9
It will present the position required, but in descending sort order.
Assuming that column B was used, the numbers can be located by
=IF(B1<>"",OFFSET(A$1,B1-1,0),"")
- formula copy that down to row 9
It gives a sort-of correct response for duplicates, albeit from the wrong row.
Hope this helps
Originally Posted by Natalie
Bookmarks