Log in

View Full Version : Free Number Generator


goirish!!
06-16-2003, 01:44 AM
Does anyone know of a free random number generator??

If not then can anyone help with the Excel formula for this?? Looked several places but came up empty handed each time.

Thanks in advance!!!

oe1kenobi
06-16-2003, 02:32 AM
Depends what you want.
PocketDice (http://www.amurgsval.org/weregamer/) does all sorts of gaming dice roles, including just normal n-sided dice.
Most calculators have a RND function or Excel has RAND() function, which return a number between 0 and 1. To calculate a number between A and B, use:
=ROUND((B-A)*RAND()+A,0)
(or the equivalent in your calculator)

-Richard L. Owens

goirish!!
06-16-2003, 04:20 AM
Thanks, was able to get what I needed from the Excel formula.