🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-04-2014 02:00 PM
(1128 views)
In a database table, lets call it test11 I have the following:
expiration_dt
term
Sample record
expiration_dt term (expressed in months)
12/31/2019 12
12/31/2020 6
I need to take the expiration_dt divide it by the term and get the date in the past as a result
As an example 12/31/2019 becomes 12/31/2018
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
initial_date = intnx("MONTH", expiration_dt, -term, "SAME");
PG
PG
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
data test;
input expiration_dt mmddyy10. term;
format expiration_dt pastdate mmddyy10.;
pastdate=intnx('month',expiration_dt,-(term),'s');
cards;
12/31/2019 12
12/31/2020 6
;run;