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

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