Randomize a list

  • Thread starter Thread starter CD Tom
  • Start date Start date
C

CD Tom

I have upto 25 people in a list there is a account number and their last
name, first name in the list I want to randomize this list and then be able
to keep the list in that order for further use. What would be the best way
to handle this. Thanks for any help.
 
Add a number field, double, to the table design and run update query on that
field with this --
Rnd([account number])
 
Back
Top