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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Countrows measurement assistance

Hi, 

 

I am hoping someone can help me create a measurement that counts the number of orders that are shipped late. 

 

Here is my current measurement.  I know why this is not correct but cannot figure out how to count late our orders.

 

Does Not Meet SLA =
SUMX (
    VALUES ( PARTSSHIPPINGKPI_VW[CUSTOMER ORDER NUMBER] ),
    VAR vHeader = PARTSSHIPPINGKPI_VW[CUSTOMER ORDER NUMBER]
    VAR vCount =
        COUNTROWS (
            FILTER (
                PARTSSHIPPINGKPI_VW,
                PARTSSHIPPINGKPI_VW[CUSTOMER ORDER NUMBER] = vHeader
                    && PARTSSHIPPINGKPI_VW[SLA] = "Does Not Meet SLA"
                    && PARTSSHIPPINGKPI_VW[NEW ITEM] = 0
            )
        )
    RETURN
        IF ( NOT ISBLANK ( vCount ), 1 )
)
 
The table below shows an example of a customer order I do not want to count but the above measurement is currently counting.  Here are the requirements for the measurement:
  • Count the number of Customer Order Numbers that are Late
    • A "late" order will have SLA = Does Not Meet SLA
    • If one (or more) of the Customer Order Lines is late, the entire Customer Order Number is considered late. 
    • If New Item = 1 on ANY of the customer order lines do count the order as late (skip the order) 
Thanks for the help!
CUSTOMER ORDER NUMBERCUSTOMER ORDER LINESITEMNEW ITEMBUSINESS DAYSSLAMeets SLADoes Not Meet SLA
CP000224171529A414202Meets SLA1 
CP000224172529A414302Meets SLA1 
CP000224173526G4134032Does Not Meet SLA 1
CP000224174526G4135032Does Not Meet SLA 1
CP000224175526G4137032Does Not Meet SLA 1
CP000224176526G4139032Does Not Meet SLA 1
CP000224177526G4140032Does Not Meet SLA 1
CP000224178526G4133132Does Not Meet SLA  
CP000224179526G4136132Does Not Meet SLA  
CP0002241710526A2016BA032Does Not Meet SLA 1
CP0002241711A32-160020032Does Not Meet SLA 1
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

You can try to use the following measure formulas to get the order numbers that are shipped late based on the conditions:

formula =
VAR summary =
    SUMMARIZE (
        ALLSELECTED ( 'Table' ),
        [CUSTOMER ORDER NUMBER],
        [CUSTOMER ORDER LINES],
        [NEW ITEM],
        [SLA]
    )
VAR NewOrders =
    SUMMARIZE ( FILTER ( summary, [NEW ITEM] = 1 ), [CUSTOMER ORDER NUMBER] )
RETURN
    COUNTROWS (
        SUMMARIZE (
            FILTER (
                summary,
                NOT ( [CUSTOMER ORDER NUMBER] IN NewOrders )
                    && [SLA] = "Does Not Meet SLA"
            ),
            [CUSTOMER ORDER NUMBER]
        )
    )

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous,

You can try to use the following measure formulas to get the order numbers that are shipped late based on the conditions:

formula =
VAR summary =
    SUMMARIZE (
        ALLSELECTED ( 'Table' ),
        [CUSTOMER ORDER NUMBER],
        [CUSTOMER ORDER LINES],
        [NEW ITEM],
        [SLA]
    )
VAR NewOrders =
    SUMMARIZE ( FILTER ( summary, [NEW ITEM] = 1 ), [CUSTOMER ORDER NUMBER] )
RETURN
    COUNTROWS (
        SUMMARIZE (
            FILTER (
                summary,
                NOT ( [CUSTOMER ORDER NUMBER] IN NewOrders )
                    && [SLA] = "Does Not Meet SLA"
            ),
            [CUSTOMER ORDER NUMBER]
        )
    )

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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