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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
KAYKAY181159
New Member

SUB AND GRAND TOTAL ERRORS

I get wrong sub total and grand total using below formula

 

=IF(COUNTROWS(FILTER('Order Booking - Improved New',CONTAINSSTRING('Order Booking - Improved New'[Collection],"NOS")))>0.,SUMX('Order Booking - Improved New',('Order Booking - Improved New'[ORD ON HAND]*0.03)),SUMX('Order Booking - Improved New',('Order Booking - Improved New'[ORD ON HAND]*0.05)))

3 REPLIES 3
Greg_Deckler
Super User
Super User

@KAYKAY181159 First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

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

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8


Follow on LinkedIn
@ 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...
Royel
Helper II
Helper II

@KAYKAY181159 
What you want to do?

What was the error?

In addition if possible share sample data.

foodd
Super User
Super User

Reformated DAX for the comfort of any reader of this post:

=
IF (
    COUNTROWS (
        FILTER (
            'Order Booking - Improved New',
            CONTAINSSTRING (
                'Order Booking - Improved New'[Collection],
                "NOS"
            )
        )
    ) > 0.,
    SUMX (
        'Order Booking - Improved New',
        ( 'Order Booking - Improved New'[ORD ON HAND] * 0.03 )
    ),
    SUMX (
        'Order Booking - Improved New',
        ( 'Order Booking - Improved New'[ORD ON HAND] * 0.05 )
    )
)

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors
Top Kudoed Authors