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

Dear All:

Could someone tell me how to calculate year to year sales changes when the data is at quarterly interval?

The data looks like:

patient YEAR QTR visit

I do the following

proc sort data=t1 out=t2;

     by patient qtr year;

run;

data t3;

     set t2;

     by patient qtr year;

     if first.patient or first.qtr then

          lagvisit  = .;

     else lagvisit = lag(visit);

run;

But the resulting table is not correct.  Could someone here tell me why?

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

All you need is to keep the lag out of the conditional block:

proc sort data=t1 out=t2;

     by patient qtr year;

run;

data t3;

     set t2;

     by patient qtr year;

     lagvisit = lag(visit);

     if first.qtr then lagvisit  = .;

run;

PG

PG

View solution in original post

4 REPLIES 4
Reeza
Super User

Lag shouldn't be used in a conditional statement (if/then).

Conditional Use of LAG - sasCommunity

caveman529
Calcite | Level 5

Hi, Reeza:

Thanks for the tips.  I'll refrain from using the lag function in if/then situation.  Could you tell me the most efficient way to achieve the task?  I think some kind of proc sql should do the trick, but the syntax would be ugly.

PGStats
Opal | Level 21

All you need is to keep the lag out of the conditional block:

proc sort data=t1 out=t2;

     by patient qtr year;

run;

data t3;

     set t2;

     by patient qtr year;

     lagvisit = lag(visit);

     if first.qtr then lagvisit  = .;

run;

PG

PG
caveman529
Calcite | Level 5

This works great Smiley Happy

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1531 views
  • 3 likes
  • 3 in conversation