Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hola a todos,
Por favor, alguien puede ayudarme con lo siguiente. Traté de utilizar el enfoque expalineado en este enlace (https://powerpivotpro.com/2013/04/counting-active-rows-in-a-time-period-guest-post-from-chris-campbe...), pero en vano.
Quiero saber si un NCR determinado estaba activo o no en función del intervalo de fechas elevadas seleccionado. Por ejemplo, el NCR no 456 que se cerró el 03/02/2020 está activo, pero si cambio el rango hasta hoy, entonces diría N.
Gracias a todos, Habib
Solved! Go to Solution.
Hola @HabibAdil ,
Prueba esto:
NCR Active_YN =
VAR StatDate =
MINX ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] )
VAR EndDate =
MAXX ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] )
RETURN
IF (
SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Raised] )
IN VALUES ( 'Calendar'[Date] ),
SWITCH (
TRUE (),
ISBLANK ( SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Closed] ) ), "Y",
SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Closed] ) > EndDate, "Y",
"N"
)
)
Saludos
Icey
Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
Hola @HabibAdil ,
Prueba esto:
NCR Active_YN =
VAR StatDate =
MINX ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] )
VAR EndDate =
MAXX ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] )
RETURN
IF (
SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Raised] )
IN VALUES ( 'Calendar'[Date] ),
SWITCH (
TRUE (),
ISBLANK ( SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Closed] ) ), "Y",
SELECTEDVALUE ( OE_BD_NCR_Reports[NCR_Date_Closed] ) > EndDate, "Y",
"N"
)
)
Saludos
Icey
Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
@HabibAdil , Probar como
medida :
var _minx á minx(allselcted(Date), Date[date])
var _maxx á minx(allselcted(Date), Date[date])
devolución
if( isblank(
calculate(countrows(Table), filter(Table,((isblank(Table[Date_closed]) && Table[start_date] <-_minx) ? Tabla[Date_closed] >-_minx) && (isblank(Table[Date_closed]) ? Tabla[Date_closed] > _minx)))), "No", "Sí")
Hi@ Amitchandak,
Gracias por responder rápidamente. No para todos ellos. La medida que creo es la siguiente. Tengo una tabla calender que está relacionada con NCR_Date_Raised campo en OE_BD_NCR_Reports tabla. No veo que el var _max se utiliza en la medida.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.