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
darlingling520
New Member

can't calculate DATEDIFF using Max function

Hi all,

 

I'm pretty new to power bi so I would like some help on this 

 

I am trying to calculate the month difference between the max date and the selected date

I tried 2 different methods:

Method 1 using today() and it worked well 

datediff = DATEDIFF(SELECTEDVALUE(DATA[date].[date]),today(),MONTH)
 
however when I tried to use the max function replacing the today() function- my result returned to 0 
datediff2 = DATEDIFF(SELECTEDVALUE(DATA[date].[date]),max(DATA[date].[Date]),MONTH)
 
does anyone know why is my max() not returning the max date of the table?
 
thanks in advanced! 
2 ACCEPTED SOLUTIONS
Samarth_18
Community Champion
Community Champion

Hi @darlingling520 ,

You could try this:-

datediff2 = 
var max_date = calculate(max(DATA[date]),ALL(DATA[date]))
return DATEDIFF(SELECTEDVALUE(DATA[date]),max_date,MONTH)

BR,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

darlingling520
New Member

okay I already figured out myself - in order to use the max function 

i need to use maxdate= calculate(max(data[date]),all(data)); so the max date will be fixed and therefore i can use it to calculate the datediff 

View solution in original post

3 REPLIES 3
darlingling520
New Member

okay I already figured out myself - in order to use the max function 

i need to use maxdate= calculate(max(data[date]),all(data)); so the max date will be fixed and therefore i can use it to calculate the datediff 

Samarth_18
Community Champion
Community Champion

Hi @darlingling520 ,

You could try this:-

datediff2 = 
var max_date = calculate(max(DATA[date]),ALL(DATA[date]))
return DATEDIFF(SELECTEDVALUE(DATA[date]),max_date,MONTH)

BR,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

thanks so much!!

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.