I am trying to make number facts worksheets for school kids that include all the basic facts per operation on each sheet in random order. I can use the random number generator to make sheets with random problems, but I can’t figure out how to randomize the order of a set list of problems. Please help.
Basically, I just want to UNSORT, randomly.
shuffle…
Introduce a column with random integers and sort according that column
Why random integers? Any value may repeat.
Of course you are right … forget about the crude idea.
To widen the horizon of the question a bit: [Tutorial] Randomization in Calc (View topic) • Apache OpenOffice Community Forum
You can create a jumbled set in three simple steps:
- Use the
RAND()
function to generate individual “score” to each problem. - Use the
RANK()
function to generate sequence numbers based on those scores. - Use
VLOOKUP()
to extract problem descriptions in the generated sequence
See the attached file for a small sample.