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

I am trying to create a MTD flad on SAS EG to compare financial figures year over year; below is the formula I came up with, however I am not getting any answers. Not sure, what I'm doing wrong here:

 

CASE

WHEN MONTH(t1.TransactionDate) = MONTH (TODAY()) AND DAY(t1.TransactionDate) <= DAY(TODAY())

THEN 'MTD'

END

 

I have a list of TransactionsDates for 2015 (Jan to Dec) and 2016 YTD.

 

Thanks,

 

CJ 

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

Is TransactionDate a SAS Date or DateTime value. If it's DateTime then your When case would always be False.

View solution in original post

5 REPLIES 5
ballardw
Super User

Did you have an "END AS VaraibleName" ?

need to have a place to put the result

Kurt_Bremser
Super User
data have;
input transactiondate :yymmdd10.;
format transactiondate yymmddd10.;
cards;
2015-04-04
2015-10-02
2015-10-10
2016-04-04
2016-10-02
2016-10-10
;
run;

proc sql;
create table want as
select transactiondate,
case
when month(t1.TransactionDate) = month(today()) and day(t1.TransactionDate) <= day(today())
then 'MTD'
end as mtd
from have t1;
quit;

proc print noobs;
run;

delivers this result:

transactiondate    mtd

  2015-04-04          
  2015-10-02       MTD
  2015-10-10          
  2016-04-04          
  2016-10-02       MTD
  2016-10-10          

So to me, your query works as desired; if that is not the case with your code, post the complete SQL code and the log.

chrisjab
Fluorite | Level 6

Thank you Kurt, the problem was the date format

Patrick
Opal | Level 21

Is TransactionDate a SAS Date or DateTime value. If it's DateTime then your When case would always be False.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2562 views
  • 2 likes
  • 4 in conversation