Al said:
Hi I have 1500 records, and in one field I want to insert at random one of
six options. Is there an easy way to do this?
there's probably is an easy way, but I don't know what you
mean by "options".
If all you want is a to set the field to a random selection
of 0,1,2,3,4,5, then use an Update query:
UPDATE [tablename] SET [thefield] = CInt(6*Rnd(somefield])
Make sure that [somefield] only contains numbers greater
than zero (an AutoNumber field is good for this).