I want to know if it is possible to nth a list in ACCESS?
Explicate? I'm not familiar with "nthing"...
You can extract random records though: create a little function by
editing into a Module named basRandom:
Public Function RandNum(vIgnore As Variant) As Double
Static bRandomized As Boolean
If Not bRandomized Then
Randomize ' initialize the random number generator
bRandomized = True
End If
RandNum = Rnd()
End Function
Then in your Query put a calculated field
Shuffle: RandNum([somefield])
where somefield is any field in your table; this will force Access to
call the function for every row.
Sort by this field, and use the TOP VALUES property of the query to
return the top 100, or top 10%, or whatever number of records you
want.
.