BookmarkSubscribeRSS Feed
vishalrajpoot3
Obsidian | Level 7

 

Please help me to get the 6 month next date and previous date from the below dates.  Also suggest me where I am mistaking?

 

 

Set-A

Migration_Date

1-Oct-10
1-Jun-10
1-Apr-11
1-Oct-10
1-Nov-10
1-Jun-10
1-Oct-10
1-Jan-14
1-Mar-11

 

 

data date_treat;
set A;
sixmonth_backdt=intnx('month','Migration_dt'd,-6,'B');
format sixmonth_backdt date9.;
run;

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20
data Set_A;
input Migration_Date:date7.;
format Migration_Date date7.;
datalines;
1-Oct-10
1-Jun-10
1-Apr-11
1-Oct-10
1-Nov-10
1-Jun-10
1-Oct-10
1-Jan-14
1-Mar-11
;

data want;
   set Set_A;

   /* Exactly six months back */
   sixmonth_backdt=intnx('month',Migration_Date,-6,'S');

   /* Six months back, start of month */
   sixmonth_backdt_b=intnx('month',Migration_Date,-6,'B');

   /* The day before */
   The_Day_Before=Migration_Date-1;

   format _numeric_ date7.;

run;

SAS Innovate 2025: Register Now

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 6900 views
  • 1 like
  • 2 in conversation