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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
PaisleyPrince
Helper II
Helper II

Using a Date Parameter in DAX

Hi,

I would like to create a scenario where a user chooses a date which is then used to calculate the number of days,weeks and months between the user's chosen date and dates in a table column which are shown in a report.

The parameter should have a default value of today's date.

Would you be able to advise me of the easiest way to do this ?

Many thanks

Scott

1 ACCEPTED SOLUTION
Sahir_Maharaj
Super User
Super User

Hello @PaisleyPrince,

 

Can you please try creating a date parameter and use it to dynamically calculate the difference:

Days Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), DAY)
Weeks Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), WEEK)
Months Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), MONTH)

Hope this helps. 


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

View solution in original post

1 REPLY 1
Sahir_Maharaj
Super User
Super User

Hello @PaisleyPrince,

 

Can you please try creating a date parameter and use it to dynamically calculate the difference:

Days Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), DAY)
Weeks Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), WEEK)
Months Difference = 
VAR ChosenDate = SELECTEDVALUE('Selected Date'[Date], TODAY())
RETURN
    DATEDIFF(ChosenDate, MIN('YourTable'[DateColumn]), MONTH)

Hope this helps. 


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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