BookmarkSubscribeRSS Feed
thanikondharish
Calcite | Level 5

I have one dataset like see below

data have ;

input number ;

cards ;

4

4

8

2

7

9

5

7

;

 

How to sum upto 20 and again start with record value like see below example

number                   sum

2                               2

4                               6

4                               10

8                                18

2                                20

7                                7------------------------again start with record value

9                                16

5                                 5----------------------again start with record value

7                                 12

;

1 REPLY 1
VDD
Ammonite | Level 13 VDD
Ammonite | Level 13
data have ;
input number ;
cards ;
2 
4
4
8
2
7
9
5
7
;
data want;
	retain mysum;
	set have;
	if (mysum + number) > 20 then mysum = number;
	else mysum + number;

run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 302 views
  • 0 likes
  • 2 in conversation