random values

RAMatgreenleaf

Board Regular
Joined
Sep 23, 2005
Messages
84
i have a list of names which i would like to disply randomly throughout column a
or somehow

i want to be able to come up with differnt lists each being random listing the names of people, like i said randomly

thank you in advance
ryan
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
RAMatgreenleaf said:
i have a list of names which i would like to disply randomly throughout column a
or somehow

i want to be able to come up with differnt lists each being random listing the names of people, like i said randomly

thank you in advance
ryan
Book8
ABCDE
1
2Name ListRandRankRandomized Name List
3Bob0.8407932Damon
4Olga0.8242013Bob
5Damon0.912471Olga
6Brian0.4521534Brian
7Jon0.3284385Jon
8
9
Sheet1


B3, copied down:

=RAND()

C3, copied down:

=RANK(B3,$B$3:$B$7)

E3, copied down:

=IF(ROW()-ROW($E$3)+1<=ROWS($A$3:$A$7),INDEX($A$3:$A$7,MATCH(ROW()-ROW($E$3)+1,$C$3:$C$7,0)),"")
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top