RAND() / RANDBETWEEN() FOR SPECIFIC ARRAY

F

FARAZ QURESHI

How can one derive a random number from a specifc array, for example a random
selection from {2, 4, 16, 256, 65536}
 
L

Lars-Åke Aspelin

How can one derive a random number from a specifc array, for example a random
selection from {2, 4, 16, 256, 65536}

Try this formula

=CHOOSE(RANDBETWEEN(1,5),2,4,16,256,65536)

Hope this helps / Lars-Åke
 
Top