Hi ,
I have a report that will run on first of the every month.I want to exclude the future month effective date from the report. April month report should not include members with effective date April, May, etc.
Membno Effdat Expdat
1 20140301 20141231
2 20170401 20170430
3 20170105 20170130
4 20170301 20170330
5 20170501 20170528
I have the format as YYMMDDN8. for the Effdat and EXPDAT field.
Output should be as below:
Membno Effdat Expdat
1 20140301 20141231
3 20170105 20170130
4 20170301 20170330
Thanks for your help.
Or a different where statement:
where effdat le intnx('month',today(),-1,'e');
or
where effdat lt intnx('month',today(),0,'b');
which would exclude recods with an effdate greater than or equal to the beginning of the current month
Add a filter to your query.
WHERE date < {date of interest};
Or a different where statement:
where effdat le intnx('month',today(),-1,'e');
or
where effdat lt intnx('month',today(),0,'b');
which would exclude recods with an effdate greater than or equal to the beginning of the current month
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.