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
Arni_Thor_Jakob
Regular Visitor

Unusual SUMX behaviour

Hello, I am working on a measure that needs to sum up the number of instances where the inventory of a product goes below a specified minimum quantity. This needs to be done over multiple days and for multiple store locations. 

I have managed to do this but my measure is too slow. I am close to figuring out a faster measure that works but I need some assistance. 

 

The measure that works but is too slow is:

 

Less Than Min - Slow = 
    VAR LessThanMin =
    SUMX(
        SUMMARIZE(
            'Calendar',
            'Calendar'[Date],
            "Available", 
            COUNTROWS (
                FILTER (
                    ADDCOLUMNS (
                        CROSSJOIN (
                            VALUES ( 'Product'[Product_No] ),
                            VALUES ( 'Location'[Store Name] )
                        ),
                        "Quantity on Hand", [Quantity on Hand]
                    ),
                    [Quantity on Hand] <= [Min Qty] 
                        && NOT ( ISBLANK ( [Quantity on Hand] ) )
                )
            )
        ),
        [Available]
    )

    Return 
        LessThanMin

 

 

The measure that is faster but not quite working is:

 

Less Than Min - Not Working = 
    
    VAR CrossjoinTable = 
        FILTER(
            ADDCOLUMNS (
                CROSSJOIN (
                    VALUES ( 'Product'[Product_No] ),
                    VALUES ( 'Location'[Store Name] )
                ),
                "Quantity on Hand", [Quantity on Hand]
            ),
            NOT ( ISBLANK ( [Quantity on Hand] ) )
        )

    VAR LessThanMin =
        SUMX(
            SUMMARIZE(
                'Calendar',
                'Calendar'[Date],
                "Available", 
                COUNTROWS (
                    FILTER (
                        CrossjoinTable,
                        [Quantity on Hand] <= [Min Qty] 
                    )
                )
            ),
            [Available]
        )

    Return
        LessThanMin

 


On the image here below you can see an example of one product at one location.
The inventory goes below the minimum quantity for 15 days during the period.
You can see that the measure that is not quite working is identifying the right days but does not sum up the days (Column total is blank) 

Arni_Thor_Jakob_0-1621442821216.png

 

The only difference in the two measures is that the crossjoin table has been made a variable in the second measure, which is why I don't understand why SUMX behaves in a different manner. 

 

Any assistance would be greatly appreciated!

 

Best regards, 
Arni Thor

 

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Arni_Thor_Jakob This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@Arni_Thor_Jakob This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.

Top Solution Authors