data comm; format analyse commentaires.; input analyse; cards; 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 99 ; run;
can I reduce the code: like 0-34,99
data comm;
do analyse=0 to 34,99;
output;
end;
run;
I don't understand this. Please be more specific?
instead of writing 0 1 2 3 4 5 6 7 ...34 I want to know if there is another short solution
data comm;
do analyse=0 to 34,99;
output;
end;
run;
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.