J
Jeff
I have some simple code to make a Random Selection of 'x' records (random
selection) .. that is currently just a Query. I'd like to create a Form
that does the same but also give me the ability to make an Adverse selection
(based on a certain field). Is this something I could do in a Form vs.
Queries?
Random Selection Code:
______
SELECT TOP 25 Original.* INTO New_selection
FROM Original
ORDER BY Rnd(IsNull(Original.ID)*0+1);
_______
Thanks,
Jeff
selection) .. that is currently just a Query. I'd like to create a Form
that does the same but also give me the ability to make an Adverse selection
(based on a certain field). Is this something I could do in a Form vs.
Queries?
Random Selection Code:
______
SELECT TOP 25 Original.* INTO New_selection
FROM Original
ORDER BY Rnd(IsNull(Original.ID)*0+1);
_______
Thanks,
Jeff