data new23;
input a @@;
cards;
1 2 3 4 5
;
Write a program to get output like below without any warnings in log
1
22
333
4444
55555;
data new23;
input a @@;
x=repeat(strip(put(a,best.)),a-1);
put x=;
cards;
1 2 3 4 5
;
run;
Show us what you have tried.
I DON'T GET WHAT YOU ASKED
@rvsidhu035 wrote:
I DON'T GET WHAT YOU ASKED
Show us the code that you have written to solve the problem, and if it doesn't work, we can help you with it.
data new23;
input a @@;
x=repeat(strip(put(a,best.)),a-1);
put x=;
cards;
1 2 3 4 5
;
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.