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;

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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