Hi,
I was wondering if it was possible to have a do loop that satisfies two conditions. For example, in my SAS code:
do SampSize = 5 to 50 by 5;
I want my code to do the above do loop but satisfy the following condition as well:
do SampSize = 60 to 100 by 10;
Is there any way to combine the two conditions (e.g. do SampSize 5 to 50 by 5 and SampSize = 60 to 100 by 10)?
Thanks,
Tim