Hi,
Could you please help me to get below output.
Without supplying input , how can I get below output.
1
22
333
4444
Thanks and Regards,
Jasmin Vahora
What a strange question...
I assume you're asking us to supply the input because you can't possibly get output without some input! Given that there are more ways than you can possibly imagine - are there more details to this question?
What do you mean by "output"? Do you want to create a text file, a SAS dataset, something to view in the log?
Just guessing what you're asking for.
data want1;
length want_var $9;
do i=1 to 9;
want_var=repeat(strip(put(i,best32.)),i-1);
output;
end;
stop;
run;
data want2;
input want_var :$9.;
datalines;
1
22
333
4444
;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.