BookmarkSubscribeRSS Feed
thdang
Calcite | Level 5

Hi,

Can someone tell me if there is a quick way to add an variable that take the value of the last month of each year and apply it for the next year, and the first year would have empty value. Thanks in advance!

     Date               ID                    Value               WANT

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

example:

data have;

input date mmddyy10. v;

format date mmddyy10.;

cards; 

10/31/2010 8

12/31/2010 9

10/31/2011 9

12/31/2011 10

01/31/2012 15

;

data want;

retain nv .;

set have;

if month(date)=12 then nv=v;

new=lag(nv);

proc print;run;

thdang
Calcite | Level 5

Thank you!

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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