ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Need to generate random values from a list (https://www.excelbanter.com/excel-discussion-misc-queries/99039-need-generate-random-values-list.html)

Sumeet Benawra

Need to generate random values from a list
 
Hi

I want to be able to create a random values from a given list of values.

e.g. In column A, there are these values:
aaaa
bbbb
cccc
dddd
eeee
ffff

In another column, I want to randomly populate each cell with a value from
column A.

How can I do this?

Thanks

bpeltzer

Need to generate random values from a list
 
=OFFSET($A$1,INT(RAND()*COUNTA(A:A)),0) will generate a random entry from the
list. The logic is that counta(a:a) returns the number of non-blanks from
column A. Multiply that by int(rand()*counta(a:a)) returns an integer =0
and < the number of non-blanks. The offset function goes down that many rows
from cell A1. (I've assumed the entries in column A begin in row 1 and are
continuous).
Note that the rand() function, and therefore the formula, will get updated
each time the sheet is recalculated. If you want to lock down a set of
random entries, highlight the completed column, edit copy, then edit
paste special, select values and click ok.

"Sumeet Benawra" wrote:

Hi

I want to be able to create a random values from a given list of values.

e.g. In column A, there are these values:
aaaa
bbbb
cccc
dddd
eeee
ffff

In another column, I want to randomly populate each cell with a value from
column A.

How can I do this?

Thanks


Max

Need to generate random values from a list
 
One play if you want it to be random but non-repeating ..

Assume source data within A1:A6

In B1: =INDEX(A:A,RANK(C1,$C$1:$C$6))
In C1: =RAND()
Select B1:C1, fill down to C6

B1:B6 will return a random shuffle of what's in A1:A6
Each press of the F9 key will regenerate a fresh shuffle
(Hide away col C, if necess)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Sumeet Benawra" wrote:
Hi

I want to be able to create a random values from a given list of values.

e.g. In column A, there are these values:
aaaa
bbbb
cccc
dddd
eeee
ffff

In another column, I want to randomly populate each cell with a value from
column A.

How can I do this?

Thanks



All times are GMT +1. The time now is 12:45 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com