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


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;
Thank you!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.