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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jchrostowski
Frequent Visitor

Filtering rows by aggregation

Hi guys,

 

I have a big problem with finding a solution. We want to reduce the number of shipments to <= 2 per month, per part number. I want to count rows where it was 3rd or more shipment of a specific part number in a specific month. in the example below rows 3 and 6 should be counted. I can't use RANKX because it's DirectQuery.  I tried to create calculated grouped table but in table I have dates and I couldn't use YearMonth column from calendar table (related). Do you have any ideas? 

 

RowSupplierPart NumberDateTracking Number
10010A6/10/2201
20010A6/11/2202
30010A6/12/2203
40020B6/13/2204
50020B6/14/2205
60030B6/15/2206
1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @jchrostowski ,

 

Please try this code to create a measure.

Count =
VAR _ADD =
    ADDCOLUMNS (
        ALL ( 'Table' ),
        "YearMonth",
            YEAR ( 'Table'[Date] ) * 100
                + MONTH ( 'Table'[Date] )
    )
VAR _ADD1 =
    ADDCOLUMNS (
        _ADD,
        "Flag",
            RANKX (
                FILTER (
                    _ADD,
                    [Part Number] = EARLIER ( [Part Number] )
                        && [YearMonth] = EARLIER ( [YearMonth] )
                ),
                [Date],
                ,
                ASC,
                DENSE
            )
    )
RETURN
    COUNTAX (
        FILTER ( _ADD1, [Part Number] = MAX ( 'Table'[Part Number] ) && [Flag] > 2 ),
        [Flag]
    )

 Result is as below.

RicoZhou_0-1671004796578.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

3 REPLIES 3
v-rzhou-msft
Community Support
Community Support

Hi @jchrostowski ,

 

Please try this code to create a measure.

Count =
VAR _ADD =
    ADDCOLUMNS (
        ALL ( 'Table' ),
        "YearMonth",
            YEAR ( 'Table'[Date] ) * 100
                + MONTH ( 'Table'[Date] )
    )
VAR _ADD1 =
    ADDCOLUMNS (
        _ADD,
        "Flag",
            RANKX (
                FILTER (
                    _ADD,
                    [Part Number] = EARLIER ( [Part Number] )
                        && [YearMonth] = EARLIER ( [YearMonth] )
                ),
                [Date],
                ,
                ASC,
                DENSE
            )
    )
RETURN
    COUNTAX (
        FILTER ( _ADD1, [Part Number] = MAX ( 'Table'[Part Number] ) && [Flag] > 2 ),
        [Flag]
    )

 Result is as below.

RicoZhou_0-1671004796578.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

It works. Thank you.

jchrostowski
Frequent Visitor

EDIT. I want to count excesive shipments in total (without splitting to part numbers) and this need to work with Supplier slicer. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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