EasySpreadsheet allows you to generate a random number within a certain range of values.
RAND (): Returns a randomly selected decimal number from a uniform distribution greater than or equal to 0 and less than 1.
You may wish to generate a number within another range instead:
RAND()*x will generate a random decimal number between 0 and x, inclusive.
RAND()*(y - x)+x will generate a random decimal number between x and y, inclusive.
ROUND(RAND()*x, 0) will generate a random integer between 0 and x, inclusive.
ROUND(RAND()*(y - x)+x, 0) will generate a random integer between x and y, inclusive.
Hint: If you press the F9 key, new random numbers will be generated for all formulas in your sheet containing the RAND function.