BookmarkSubscribeRSS Feed
Jasmin27
Calcite | Level 5

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

3 REPLIES 3
ChrisBrooks
Ammonite | Level 13

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?

Patrick
Opal | Level 21

@Jasmin27

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;

 

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1366 views
  • 0 likes
  • 4 in conversation