July 20, 2018 at 6:38 pm
#603
Bill Finzer
Keymaster
Hi Kristyn,
Here’s a formula that will produce integers from zero to nine:
floor(random(0,10))
And if you want them to go from one to ten:
ceil(random(0,10))
Of course you can change the zero and ten to anything you want.
Bill