Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JajatiDev
Helper II
Helper II

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
 

 

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @JajatiDev ,

 

The today() function does not work in Power Query. You can use the following instead:

Date.From(DateTime.LocalNow())

 

I got this from here.

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

2 REPLIES 2
tackytechtom
Super User
Super User

Hi @JajatiDev ,

 

The today() function does not work in Power Query. You can use the following instead:

Date.From(DateTime.LocalNow())

 

I got this from here.

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Thanks for the response. Just figured out the same 😊

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors