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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 739 views
  • 0 likes
  • 4 in conversation