Hi,
I am trying to create a form, that will randomize data from a table. For example, I have a table called "tbl_master ". It has 3 fields, sport, athlete, speed. I would like the form on a button press to take one random entry from each field. I have managed to do this with one field, but cannot figure out how to do it for all 3. What i have done so far is created a select query and use the following:
That will randomize the sport field, but I am unsure how to make this work to randomize all fields. Thanks guys!
I am trying to create a form, that will randomize data from a table. For example, I have a table called "tbl_master ". It has 3 fields, sport, athlete, speed. I would like the form on a button press to take one random entry from each field. I have managed to do this with one field, but cannot figure out how to do it for all 3. What i have done so far is created a select query and use the following:
Code:
SELECT TOP 1 tbl_master.sport FROM tbl_master ORDER BY Rnd(Len([sport])) DESC;
Comment