BookmarkSubscribeRSS Feed
Avishaarky
Calcite | Level 5
 
1 REPLY 1
FreelanceReinh
Jade | Level 19

Hello @Avishaarky and welcome to the SAS Support Communities!

 

To keep it simple:

data want(drop=i);
set sales;
array x[100];
array y[100];
do i=3 to 98;
  y[i]=mean(x[i-2],x[i-1],x[i],x[i+1],x[i+2]);
end;
run;

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
  • 1 reply
  • 595 views
  • 1 like
  • 2 in conversation