As I am using rnd(), I'm finding that my numbers are not so random as they first seem. For example, Int(Rnd()*10) gives me a predefined number string through several queries, but not a random number. For example, when I open the database and run the query {which only has this one field Rn:Int(Rnd()*10)} I get the output of 7, and then if I re run the query I get 5, then 5, then 2. Now if I close the database and start the process all over again, I get exactly the same output, 7,5,5,2, etc.
I've tried using rnd() with an ID field, but the same happens, as well as doing something like Rnd(Now())+Rnd(Right([ID],3))*100000 and so on.. Does anyone know how to generate an actual random number sequence?
The reason I'm needing this is it is for a multi-user database (small, only 10 people or so) who have a customer call back list, call their customers, and then update the list. My problem lies in that I don't want the reps starting off in the same position or same record. Otherwise I would have two reps calling the same customer at the same time before they edited the record. Any ideas either way?
I've tried using rnd() with an ID field, but the same happens, as well as doing something like Rnd(Now())+Rnd(Right([ID],3))*100000 and so on.. Does anyone know how to generate an actual random number sequence?
The reason I'm needing this is it is for a multi-user database (small, only 10 people or so) who have a customer call back list, call their customers, and then update the list. My problem lies in that I don't want the reps starting off in the same position or same record. Otherwise I would have two reps calling the same customer at the same time before they edited the record. Any ideas either way?