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!

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!

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.

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