BookmarkSubscribeRSS Feed
shru
Calcite | Level 5

Hi,

My code is

data text;

set data1;

if nobs=1 then do;

b=0;

v=0;

end;

b=b+bal;

v=v+val;

run;

Where my data1 datset contains a column nobs like below

nobs

2     

3    

4

5

6

7

and i want result like

nobs bal val

1      2    3

2     3    5

3     5     8

likewise

the code should produce the cumulative values ,but i am getting the missing value when i run the above code

can anyone let me know is there any other way to do or y is this failing?

Thanks

3 REPLIES 3
Doc_Duke
Rhodochrosite | Level 12

I don't understand the result that you are trying to get, but there are several obvious problems that will yield missing data:

1) you need to read about the RETAIN statement for DATA step accumulation.

2) nobs never takes on the value '1' so the first DO is never executed.

3) bal and val are not in the input data set, so they start as missings.

Doc Muhlbaier

Duke

PaigeMiller
Diamond | Level 26

data text;

set data1;

b+bal;

v+val;

run;

--
Paige Miller
Linlin
Lapis Lazuli | Level 10

try changing

b=b+bal;

v=v+val;

to

b+bal;

v+val;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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