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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Syndicate_Admin
Administrator
Administrator

No se puede calcular DATEDIFF con la función Max

Hola a todos

Soy bastante nuevo en power bi, así que me gustaría recibir ayuda en esto.

Estoy intentando calcular la diferencia de mes entre la fecha máxima y la fecha seleccionada

Probé 2 métodos diferentes:

Método 1 usando today() y funcionó bien

datediff = DATEDIFF(SELECTEDVALUE(DATOS[fecha].[fecha]),Hoy(),MES)
Sin embargo, cuando intenté utilizar la función Max reemplazando la función Today(), mi resultado volvió a 0
datediff2 = DATEDIFF(SELECTEDVALUE(DATOS[fecha].[fecha]),Máximo(DATOS[fecha].[Fecha]),MES)
¿Alguien sabe por qué mi max() no devuelve la fecha máxima de la tabla?
gracias de antemano!
2 ACCEPTED SOLUTIONS
Syndicate_Admin
Administrator
Administrator

@darlingling520 ,

Puedes probar esto: -

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

BR

Samarth

View solution in original post

Syndicate_Admin
Administrator
Administrator

De acuerdo, ya lo descubrí yo mismo, para usar la función max

necesito usar maxdate= calculate(max(data[date]),all(data)); Por lo tanto, la fecha máxima será fija y, por lo tanto, puedo usarla para calcular la fecha

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

De acuerdo, ya lo descubrí yo mismo, para usar la función max

necesito usar maxdate= calculate(max(data[date]),all(data)); Por lo tanto, la fecha máxima será fija y, por lo tanto, puedo usarla para calcular la fecha

Syndicate_Admin
Administrator
Administrator

@darlingling520 ,

Puedes probar esto: -

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

BR

Samarth

muchas gracias!!

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Top Solution Authors
Top Kudoed Authors