Hi out there,
I have a table with 600 records. I'd like to assign these records randomly to 15 different associates for work. What I need to do is select 40 random records and update the "Owner" column in my table with an associates name. I can't take the TOP 40 records because the table is sorted by the value of the record and it would be unfair to assign the 40 highest quality records to one person.
I belive the RAND function uses integers, however I have no integer values in my table. If I create an identity field in my table which will increment by one can I use the RAND() function? If so, how would I use it?
Thanks!
Jenn
I have a table with 600 records. I'd like to assign these records randomly to 15 different associates for work. What I need to do is select 40 random records and update the "Owner" column in my table with an associates name. I can't take the TOP 40 records because the table is sorted by the value of the record and it would be unfair to assign the 40 highest quality records to one person.
I belive the RAND function uses integers, however I have no integer values in my table. If I create an identity field in my table which will increment by one can I use the RAND() function? If so, how would I use it?
Thanks!
Jenn