Forum Discussion
ajl_ahmed
Jul 27, 2022Iron Contributor
Need a formula to write the rank of students as a text.
I need a formula to write the rank of students as a text. such that: - If the student rank is (1), (cell-E2), then the rank will be FIRST (cell D2). - If the student rank is (1), (cell-E4), then ...
- Jul 28, 2022
Use a helping list of words equivalent of numbers. Then use below formula.
=IF(COUNTIF($E$2:$E2,E2)>1,XLOOKUP(E2,$I$2:$I$100,$J$2:$J$100,"")&"-repeated",XLOOKUP(E2,$I$2:$I$100,$J$2:$J$100,""))