random selection

C

Chris Large

Hi

You need to create a query something like this :-

SELECT TOP 50 YourTable.*
FROM YourTable
ORDER BY Rnd([YourTablesAutoNumberField]);

Regards

Chris
 
R

rekowski

Thanks
-----Original Message-----
Hi

You need to create a query something like this :-

SELECT TOP 50 YourTable.*
FROM YourTable
ORDER BY Rnd([YourTablesAutoNumberField]);

Regards

Chris

-----Original Message-----
I would like to preface this by stating that i am brand
new to Access. I have a project where I need to
automatically, every work day, select 50 people randomly
(based on a numerical value) from an existing Access
database, and am wondering the best way to go about it.
Thanks
.
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top