BookmarkSubscribeRSS Feed
mandyosu01
Obsidian | Level 7

Hello SAS support community,

 

I am working on the following code but keep having errors on the THIRD PART while the first two parts are fine. Thank you so much in advance!

 

 

proc sort data=lag   out=temp2;
by key fyear dummy lagdummy;
run;


data test2;
set temp2;
by dummy notsorted;
if last.dummy;
count = _n_ - sum(lag(_n_), 0);
do _n_ = 1 to count;
set temp2;
output;
end;
run;

 

 

data final2;
set test2;
by key ;
if
lagdummy - dummy =1  then do

if (dummy = 0 and count > 2) or   ( dummy= 1 and count > 3) then output;

end;
run;

1 REPLY 1
Shmuel
Garnet | Level 18

You miss a semicolon after do:

lagdummy - dummy =1  then do ;

if (dummy = 0 and count > 2) or   ( dummy= 1 and count > 3) then output;

end;

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