I have a lot of sas dataset files that starts with "s" followed by some numbers like s1 s7 s13 s32 etc. (I have a lot).
For each files I run a set of codes, save my last result and then restart with with the following dataset file. Normally, when my dataset file numbers are sequential like s1 s2 s3 s4 s5...it is easy to use for instance a %do i=1 %to 120. But what if I want to do a loop with unequal increments? How can I do this? Like for instance a %do i=1 7 13 32.... This is quite easy in MATLAB but in SAS I am not too sure how.
|
|
||||
|
|
|
%SCAN is your friend here. Take a look at the example code below -
You can modify the part %put... to write a DATA step. |
|||||||||||||
|
|
Make your %do from the lowest data set number to highest. Then just check to see if the data set exists.
|
||||
|
|
The example below takes data sets S1, S3 and S10 and processes them, outputting data sets NEW1, NEW3 and NEW10:
|
|||
|
|
|
You can do non-sequential increments in a normal do loop, but not in a macro do loop the same way. There is a workaround on the SAShelp website. http://support.sas.com/kb/26/155.html I would first put the numbers in a comma separated macro list using the following code. The prxmatch function searches for dataset names that begin with an 'S', followed by a digit(s). Once you have this, you can follow the code on the SAS website.
|
|||
|
|
|
This is an update for Mozan's answer above. I do not recommend using CountC to count the elements in a list. Use CountW instead. Note update below:
|
|||
|
|