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

Don'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.

Reply
HabibAdil
Helper IV
Helper IV

Recuento de filas activas en un período de tiempo

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

Active NCR.PNG

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

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"
        )
    )

NCR.JPG

NCR2.JPG

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.

View solution in original post

3 REPLIES 3
Icey
Community Support
Community Support

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"
        )
    )

NCR.JPG

NCR2.JPG

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.

amitchandak
Super User
Super User

@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í")

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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.

Active_YN NCR ( NCR)
var _minx á MINX(ALLSELECTED(Calender),Calender[Date])
var _maxx á MAXX(ALLSELECTED(Calender),Calender[Date])
devolución
IF(ISBLANK(CALCULATE(COUNTROWS(OE_BD_NCR_Reports), FILTER(OE_BD_NCR_Reports,((ISBLANK(OE_BD_NCR_Reports[NCR_Date_Closed]) && OE_BD_NCR_Reports[NCR_Date_Raised]<-_minx) OE_BD_NCR_Reports[NCR_Date_Closed]>- _minx && (ISBLANK(OE_BD_NCR_Reports[NCR_Date_Closed]) OE_BD_NCR_Reports[NCR_Date_Closed]> _minx)))))),"N","Y")

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!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

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