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

Hi everyone,

 

New learner on SAS, now onto the array. doing practice from the base certification disc on chapter 16. Here's a question about array:

 

the following codes seem to extract just the numeric values in the original data set and do calculations (staff donation * 1.25 = company+staff= total contribution), i want to do some adjustments so i can show: 1. staff contribution (the original value), company contribution (original *0.25) and the total ( 1.25);

 

not quite sure how i can array it and show them all in one table.

 

this is the practice code:

 

data sasuser.added(drop=i);
   set sasuser.funddrive;
   array contrib{4} qtr1-qtr4;
   do i=1 to 4;
      contrib{i}=contrib{i}*1.25;
   end;
run;
proc print data=sasuser.added;
run;

 

Thank you all.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

You can use the array statement to create new variables:

data sasuser.added(drop=i);
set sasuser.funddrive;
array contrib{4} qtr1-qtr4;
array comp_contrib{4} c_qtr1-c_qtr4;
do i=1 to 4;
  comp_contrib{i} = contrib{i} * 0.25;
end;
run;

I leave it to you how you add the third array and do the calculation for that.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

You can use the array statement to create new variables:

data sasuser.added(drop=i);
set sasuser.funddrive;
array contrib{4} qtr1-qtr4;
array comp_contrib{4} c_qtr1-c_qtr4;
do i=1 to 4;
  comp_contrib{i} = contrib{i} * 0.25;
end;
run;

I leave it to you how you add the third array and do the calculation for that.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Not quite following, but at a guess I would say you just need to further arrays:

data sasuser.added (drop=i);
   set sasuser.funddrive;
   array contrib{4} qtr1-qtr4;
array staff_contrib{4};
array comp_contrib{4};
array total{4}; do i=1 to 4; contrib{i}=contrib{i}*1.25;
staff_contrib{i}=contrib{i};
comp_contrib{i}=contrib{i}*0.25;
total{i}=1.25; end; run;
thenewlearner
Calcite | Level 5

Thanks Kurt and RW9.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1991 views
  • 0 likes
  • 3 in conversation