I am attaching some example code. I want to find if there was an upsell or downsell over two time periods. I tried to use a retain statement with by id plan, thinking that it wouldn't retain across id's, that is not the case. Is retain the right solution for this problem and I have written incorrectly or am I going about this the wrong way.
data together (drop=diff);
set jun2014 jul2014;
by id;
diff=plan-lag(plan);
if not first.id then do;
if diff eq 0 then change = 'none';
else if diff gt 0 then change = 'up';
else change = 'down';
end;
run;
data together (drop=diff);
set jun2014 jul2014;
by id;
diff=plan-lag(plan);
if not first.id then do;
if diff eq 0 then change = 'none';
else if diff gt 0 then change = 'up';
else change = 'down';
end;
run;
Excellent, thank you. I looked up a pdf showing retain vs lag but couldn't get what I wanted out of it
thanks,
Mark
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.