Forum Discussion
rgrann12
May 22, 2020Copper Contributor
Need help with Index Function
I've created a file to pull a random list from column A, utilizing Rand() in column B and the following Index Function in Column C: =INDEX($A$4:$A30,RANK(B4,$B$4:$B$30),1) Example- Last names of ...
SergeiBaklan
May 22, 2020Diamond Contributor
You may use dynamic ranges like
=IFNA(INDEX($A$4:INDEX($A$4:$A$3000,COUNTA(A:A)-1),RANK(B4,$B$4:INDEX($B$4:$B$3000,COUNTA(A:A)-1)),1),"")
in C4
and drag it down
- rgrann12May 22, 2020Copper Contributor
SergeiBaklan Perfect thank you!
- SergeiBaklanMay 22, 2020Diamond Contributor
rgrann12 , you are welcome