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

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.

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

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;

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

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;

Steelers_In_DC
Barite | Level 11

Excellent, thank you.  I looked up a pdf showing retain vs lag but couldn't get what I wanted out of it

thanks,

Mark

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