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

Hi Everyone,

To find the Highest value within a give window, I use the proc expand.

Now I want to find the Highest value for a number of window say from 3 to 5. I can run the proc 3 times as below.

However, I would like to make it kind of "do from START to END" so it will provide more flexibility and make the code better controlled.

Can you please help me with that?

Thank you so much.

HHC

data have;
input var1 var2;
datalines;
3 2
4 2
0 5
8 9
6 11
100 20
20 60
40 25
10 6
50 29
100 20
run;


proc expand data=have out=want;
convert var1=max_3/transformout=(MOVmax  3);
convert var1=max_4/transformout=(MOVmax  4);
convert var1=max_5/transformout=(MOVmax  5);
run;

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Why not make a macro .

%macro m(start=,end=)

proc expand data=have out=want;

%do i=&start %to &end ;

convert var1=max_&i /transformout=(MOVmax  &i );

%end;

run;

%mend m;

%m(start=3,end=5)



Xia Keshan

View solution in original post

2 REPLIES 2
Ksharp
Super User

Why not make a macro .

%macro m(start=,end=)

proc expand data=have out=want;

%do i=&start %to &end ;

convert var1=max_&i /transformout=(MOVmax  &i );

%end;

run;

%mend m;

%m(start=3,end=5)



Xia Keshan

hhchenfx
Rhodochrosite | Level 12

Thank you, Xia.

HHC

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 1594 views
  • 0 likes
  • 2 in conversation