BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
imanojkumar1
Quartz | Level 8

Can someone please help in adding 60 to each row in the following data:

 

 

data have;
  infile cards truncover expandtabs;
  input X;
cards;
248
182
115
48
-19
-84
-146
-205
-258
-307
349
384
-413
-436
452
462
-468
-469
-467
-463
;
run;

 

So that the output looks like this:

 

XX_new
248308
182242
115175
48108
-19-79
-84-144
-146-206
-205-265
-258-318
-307-367
349409
384444
-413-473
-436-496
452512
462522
-468-528
-469-529
-467-527
-463-523
1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15
data have;
  infile cards truncover expandtabs;
  input X ;
  X_plus_60=(abs(x)+60)*(x/abs(x));
cards;
248
182
115
48
-19
-84
-146
-205
-258
-307
349
384
-413
-436
452
462
-468
-469
-467
-463
;
run;

View solution in original post

1 REPLY 1
Haikuo
Onyx | Level 15
data have;
  infile cards truncover expandtabs;
  input X ;
  X_plus_60=(abs(x)+60)*(x/abs(x));
cards;
248
182
115
48
-19
-84
-146
-205
-258
-307
349
384
-413
-436
452
462
-468
-469
-467
-463
;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 890 views
  • 0 likes
  • 2 in conversation