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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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
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!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors