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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
joluwa
Helper I
Helper I

Correct value in totals and card visual but incorrect total in table row

I have written a DAX code and on a card visual and the totals I get the correct value but in the row I am getting the wrong number, where do I begin to find out whats going wrong?

 

totalbays =
VAR onlyCampaignFiltered =
    ISFILTERED ( 'Campaign Overview'[campaign] )
        && NOT CALCULATE (
            ISCROSSFILTERED ( 'range_plans' ),
            REMOVEFILTERS ( 'Campaign Overview'[campaign] )
        )
            || ISFILTERED ( 'Calendar'[weekNumWeekCommence] )
RETURN
    SWITCH (
        TRUE (),
        SELECTEDVALUE ( 'Campaign Overview'[branch_type] ) = "IN STORE", [totalRangePlanBays],
        onlyCampaignFiltered,[totalRangePlanBays],
        [Total Avg Bays Campaign Overview]
        )
 
joluwa_0-1700059777162.png

 

 When I filter on a range group it shows the correct amount in the totals but incorrect in the row:
joluwa_1-1700059832027.png

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@joluwa So that's quite the reversal! Generally the situation is the other way around. Normally what I do is to create a measure to return the correct row value first. Then I create a second measure that uses HASONEVALUE or ISINSCOPE to create a measure that returns a correct total. Kind of hard to understand what is going wrong with the information provided but hopefully the following links will help.

 

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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@joluwa So that's quite the reversal! Generally the situation is the other way around. Normally what I do is to create a measure to return the correct row value first. Then I create a second measure that uses HASONEVALUE or ISINSCOPE to create a measure that returns a correct total. Kind of hard to understand what is going wrong with the information provided but hopefully the following links will help.

 

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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

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.