Forum Discussion

JajatiDev's avatar
JajatiDev
Helper II
4 years ago
Solved

M Language If statement

Hi,

 

Here is the DAX function I have written;

 

CRDD Month = IF('Orders'[customer_req_date]<= EOMONTH(TODAY(),0),"CRDD Current","CRDD Future")
 
Now, I am trying to write this in M Language but getting an error message.
 
if [customer_req_date] <= Date.IsInCurrentMonth(today(),0) then "CRDD Current" else "CRDD Future"
 
Error Message - The name today wasn't recognised. make sure it's spelt correctly.
 
My objective is to use the today function to identify the current month so that it remains dynamic and no intervention is required.
 
I am looking forward to the suggestions.
 
Thanks and Regards,
Jajati Dev