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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Kamaizziati
Helper IV
Helper IV

How to calculate period days from Created Date to Current/Today Date

Hi,

 

How to calculate period day betwen two date.

First Date is Created Date

Second Date is TODAY date.

 

Thanks

2 ACCEPTED SOLUTIONS
TomMartens
Super User
Super User

If you want to use DAX to create a calculated column, you can use this formula

Measure = DATEDIFF("2017-03-20", TODAY(), DAY)

This Formula returns the difference from the 20th of March 2017 until today in days. I used a constant for the StartDate. You have to replace "2017-03-20" by 'your tablename'[your columnname] to reference a column in on one of your tables.

 

Hope this helps



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

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

hweaves12
Frequent Visitor

Is it possible your dates are in different formats? ie DD/MM/YYYY versus MM/DD/YYYY

 

The dax formula submitted already is right.

 

DATEDIFF(MyTable[Start Date], MyTable[End Date], DAY) for number of days

DATEDIFF(MyTable[Start Date], MyTable[End Date], YEAR) for number of years

View solution in original post

3 REPLIES 3
hweaves12
Frequent Visitor

Is it possible your dates are in different formats? ie DD/MM/YYYY versus MM/DD/YYYY

 

The dax formula submitted already is right.

 

DATEDIFF(MyTable[Start Date], MyTable[End Date], DAY) for number of days

DATEDIFF(MyTable[Start Date], MyTable[End Date], YEAR) for number of years

TomMartens
Super User
Super User

If you want to use DAX to create a calculated column, you can use this formula

Measure = DATEDIFF("2017-03-20", TODAY(), DAY)

This Formula returns the difference from the 20th of March 2017 until today in days. I used a constant for the StartDate. You have to replace "2017-03-20" by 'your tablename'[your columnname] to reference a column in on one of your tables.

 

Hope this helps



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

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi @TomMartens,

 

Its doest work for me. The error state the start date cannot be grater than the end date althougt created date is lower than TODAY date.

 

Thanks

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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