How do I create a random sample from a table?

G

Guest

I'm new to Access and I'm need to take a random sample from a table. I have
bwtween 900 - 1400 accounts numbers a day and I need to pull a random sample
of 150 each day. Can anyone help me on how to do this? (I'm running off
Access 2002). Thank you! :)
 
J

John Vinson

I'm new to Access and I'm need to take a random sample from a table. I have
bwtween 900 - 1400 accounts numbers a day and I need to pull a random sample
of 150 each day. Can anyone help me on how to do this? (I'm running off
Access 2002). Thank you! :)

You can use the Top Values property of a query, with help
from a little VBA. Put this little function into a Module:

Public Function RndNum(vIgnore As Variant) As Double
Static bRnd As Boolean
If Not bRnd Then
'Initialize the random number generator once only
bRnd = True
Randomize
End If
RndNum = Rnd()
End Function

Then add a calculated field to your Query by typing

Shuffle: RndNum([fieldname])

in a vacant Field cell, where [fieldname] is any field in
your table - this forces Access to give a different random
number for each record.

Sort the query by Shuffle, and set its Top Values property
to the number of records you want to see.

John W. Vinson[MVP]
 
D

Douglas J. Steele

John Vinson said:
I'm new to Access and I'm need to take a random sample from a table. I
have
bwtween 900 - 1400 accounts numbers a day and I need to pull a random
sample
of 150 each day. Can anyone help me on how to do this? (I'm running off
Access 2002). Thank you! :)

You can use the Top Values property of a query, with help
from a little VBA. Put this little function into a Module:

Then add a calculated field to your Query by typing

Shuffle: RndNum([fieldname])

in a vacant Field cell, where [fieldname] is any field in
your table - this forces Access to give a different random
number for each record.

Sort the query by Shuffle, and set its Top Values property
to the number of records you want to see.

Just a little warning to John's elegant solution.

Remember that random numbers CAN repeat. The Top Values property of a query
does not handle ties: if when you've sorted the query, the 150th and 151st
elements both have the same value for Shuffle, you'll actually get 151 rows
returned.

Of course, the probability of this happening is low.
 

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

Random Sample 1
Random Sample 1
Random Sampling 2
Random Sampling 6
Sample Selection from Access Tables - Urgent Audit - HELP!!! 1
Random Samples 4
stratified sample 1
Pulling a sample and removing linked table 3

Top