Hi,
This is kind of a weird problem that I haven't had to think about before.
I have a use case where an individual record has a number associated to it, called Y from here on, and we want to pick N random numbers between 1 and Y, where N is defined as CEIL(Y*.3).
However, we don't want to pick the same number twice.
Is there a way to do this kind of sampling, where we pull a number out of the pool? I think an iterative macro might work but it feels like that might also be overkill.
Thanks!