BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Tihannah
Obsidian | Level 7

Trying to create a month to date filter where all data is rolled up to the previous days date. Our data is updated hourly so it keeps pulling in the current days data, which I don't need.

 

The filter is written:

 

Case when YEAR(t1.Order_Dt)=YEAR(TODAY()-1) AND MONTH(t1.Order_Dt)=MONTH(TODAY()-1) then 'MTD' else 'NoMonth' end 

 

It still keep pulling in data from the current business day. What am I doing wrong???

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Look at something like

t1.order_dt between intnx('month',today()-1,0,'B') and (today()-1 )

 

You are getting todays date most of the time because month(today()-1) is month(today()) unless you are running on the first day of the month. You would also have to extend the the logic to day(order_dt) le day(today()-1)

View solution in original post

5 REPLIES 5
Reeza
Super User

Wouldn't it just be:

 

where t.order_dt < today()-1
Tihannah
Obsidian | Level 7
I need to roll up everything within the current month. t1.order_dt < today()-1 when just give me all previos data going back 2 years.
ballardw
Super User

Look at something like

t1.order_dt between intnx('month',today()-1,0,'B') and (today()-1 )

 

You are getting todays date most of the time because month(today()-1) is month(today()) unless you are running on the first day of the month. You would also have to extend the the logic to day(order_dt) le day(today()-1)

Tihannah
Obsidian | Level 7
Thank you!!
ShiroAmada
Lapis Lazuli | Level 10
data SAMPLE(where=(dates<=intnx('days',today(),-1)));
format dates date9.;
do dates '01Jan2017'd to '31Dec2017'd;
output;
end;
run;

Try this one.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 5 replies
  • 2481 views
  • 2 likes
  • 4 in conversation