I have a series of files that I wish to concatenate ... named file01, file02, file03 ... file12.
If I use the code
set
%do i=01 to 12;
file&i;
%end;
;
the files are named file1, file2, ... file12.
How can I force the macro to use the 2-digit (zero-filled) form of the counter?
Thanks!
You can replace the value of I with a value with a leading zero inside the loop and it will not break the looping. You can then use &I where you need it.
%macro test ;
%do i=1 %to 10 ;
%let i=%sysfunc(putn(&i,Z2));
%put i=&i ;
%end;
%mend ;
%test;
https://communities.sas.com/message/127712
You can replace the value of I with a value with a leading zero inside the loop and it will not break the looping. You can then use &I where you need it.
%macro test ;
%do i=1 %to 10 ;
%let i=%sysfunc(putn(&i,Z2));
%put i=&i ;
%end;
%mend ;
%test;
Thanks to both Jaap and Tom ... I'm in business!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.