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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors
Top Kudoed Authors