Hi,
I have a statement end date that I need to figure the statement start date, which is exactly the same day but in the month previous.
for example
id bill_end_date bill_st_date
1 12Jan2011 12Dec2010
2 23Feb2011 23Jan2011
etc.
thanks for your help.
Something like this may get your started:
data have;
infile cards;
format bill_end_date date9.
bill_st_date date9.;
input id bill_end_date : date9.;
bill_st_date=intnx('mon', bill_end_date,-1,'sameday');
cards;
1 12Jan2011
2 23Feb2011
;
proc print;run;
Kindly Regards,
Haikuo
intnx function with the same option.
Check the docs.
Something like this may get your started:
data have;
infile cards;
format bill_end_date date9.
bill_st_date date9.;
input id bill_end_date : date9.;
bill_st_date=intnx('mon', bill_end_date,-1,'sameday');
cards;
1 12Jan2011
2 23Feb2011
;
proc print;run;
Kindly Regards,
Haikuo
thank you for your help.
what happens to months with 31 days? I assume it goes to month end?
Bingo! It will go to the last day of the month. Try it for yourself, change 12Jan2011 to 31Mar2011, and see what happens.
Regards,
Haikuo
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.