Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet 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
Solved! Go to Solution.
@BI_CJ, Mybad, necesita usar el calendario en lugar de la tabla de fechas
Unidades LMTD forzadas=
var _max1 = maxx(allselected(Calendar), Calendar[Date])
var _max = fecha(año(_max1), mes(_max1)-1, día(_max1))
devolución
if(max('Calendar'[Date])<=_max, CALCULATE([Units],DATEADD(DATESMTD('Calendar'[Date]), -1,MONTH)), blank())
o
o
Unidades LMTD forzadas=
var _max1 = maxx(allselected(Calendar), Calendar[Date])
var _max = fecha(año(_max1), mes(_max1)-1, día(_max1))
devolución
CALCULATE([Unidades],DATEADD(DATESMTD('Calendario'[Fecha]), -1,MES) ,'Calendario'[Fecha]<=_max)
o
@BI_CJ , Prueba como
Últimas unidades MTD = CALCULATE([Unidades],DATEADD(DATESMTD('Calendario'[Fecha]), -1,MES))
o
Unidades LMTD forzadas=
var _max1 = maxx(allselected(Date), Date[Date])
var _max = fecha(año(_max1), mes(_max1)-1, día(_max1))
devolución
if(max('Date'[Date])<=_max, CALCULATE([Units],DATEADD(DATESMTD('Calendar'[Date]), -1,MONTH)), blank())
o
Probé la primera opción anteriormente y se muestra todo el mes en el escritorio.
La segunda opción me da este error: No se puede encontrar el nombre 'Fecha'
La sintaxis de '[Fecha]' es incorrecta. (DAX(var _max1 = maxx(allselected(Date), Date[Date])var _max = date(year(_max1), Month(_max1)-1, day(_max1))returnif(max('Date'[Date])<=_max, CALCULATE([Units],DATEADD(DATESMTD('Calendar'[Date]), -1,MONTH)), blank())//or)).
@BI_CJ, Mybad, necesita usar el calendario en lugar de la tabla de fechas
Unidades LMTD forzadas=
var _max1 = maxx(allselected(Calendar), Calendar[Date])
var _max = fecha(año(_max1), mes(_max1)-1, día(_max1))
devolución
if(max('Calendar'[Date])<=_max, CALCULATE([Units],DATEADD(DATESMTD('Calendar'[Date]), -1,MONTH)), blank())
o
o
Unidades LMTD forzadas=
var _max1 = maxx(allselected(Calendar), Calendar[Date])
var _max = fecha(año(_max1), mes(_max1)-1, día(_max1))
devolución
CALCULATE([Unidades],DATEADD(DATESMTD('Calendario'[Fecha]), -1,MES) ,'Calendario'[Fecha]<=_max)
o
¡Gracias! Eso funciona. Una pregunta más. ¿Cómo excluiría la fecha de hoy en el cálculo de LMTD ya que hay un retraso de 1 día en mis datos?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.