Link to a random number generator?

AreaCode707

Lifer
Sep 21, 2001
18,447
133
106
I need to find a random number generator that I can put parameters on (eg - find a random number between 1 and 100.)

Anyone got a good link for me? :)
 

Viper GTS

Lifer
Oct 13, 1999
38,107
433
136
Excel will do this.

RANDBETWEEN(bottom,top)

(You need the Data Analysis Toolpack for this)

A slightly less elegant way is the RAND( ) function, which returns a value between 0 and 1. Multiple that by your top number & round off to get a random number between 0 & your top.

Viper GTS