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
Anonymous
Not applicable

Card visual is showing a different value compared to column and waterfall charts

Hello,

 

Has anyone had this problem before - I have a measure in my report and i used it in 2 visuals:

  1. Card
  2. Clustered column chart

However, Im getting 2 different totals in the 2 visuals. I used another visual -  Waterfall chart - to check the total.

Result:

  • Card Total CTC - 25, 207,338
  • Clustered column Total CTC = 33,112,767
  • Waterfall Total CTC = 33,112,767

cvld_2-1633793060889.png

I am confused. Appreciate your help!

 

Thanks,

cvld

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Sorry, I realize my error.  My measure should be

TOTAL CTC Months = SUMX ( VALUES ( Date[Month Year] ), [TOTAL CTC] )

View solution in original post

14 REPLIES 14
jdbuchanan71
Super User
Super User

Sorry, I realize my error.  My measure should be

TOTAL CTC Months = SUMX ( VALUES ( Date[Month Year] ), [TOTAL CTC] )
Anonymous
Not applicable

@jdbuchanan71 it worked perfectly!! thank you so much!

cvld_0-1633883603980.png

 

jdbuchanan71
Super User
Super User

@Anonymous 

If you add another measure like this:

TOTAL CTC Months = SUMX ( Date[Month Year], [TOTAL CTC] )

Does that give you the correct value when placed in a card?  It should be forcing the the months to be considered even when they are not shown in the visual.  I'm not saying this is ideal but if it works then you know the month context is what is causing the [TOTAL CTC] measure to give an invalid amount in the card.

Anonymous
Not applicable

Hello @jdbuchanan71 I tried your formula but it is only accepting the Date table not a column. Did you mean like this 

TOTAL CTC Months = SUMX ( Date, [TOTAL CTC] )

This is returning 125,339,016.26 though.

 

No, It would be whatever column you have in your date table that is the month-year.  Basically it will replicate the context of the bar chart inside the measure then sum the result.

Anonymous
Not applicable

hi @jdbuchanan71 i have a Month-year column

Month Year = FORMAT('Date'[Date], "MMMM") & " "& FORMAT('Date'[Date],"YYYY")

But when trying to add it in my measure, i only have these options

cvld_0-1633880483861.png

Sorry if I'm not following. 

 

Try a simple SUM, you'll see they match.

Anonymous
Not applicable

hi @gtacchini  can't use SUM because my TOTAL CTC is a measure 😞 

gtacchini
Advocate I
Advocate I

@Anonymous this looks like a filter and row context issue where totals don't necessarily match individual values. I you could please post the measure you are using that would be helpful for debugging. Normally that happens because you're using a measure that should be applied with a row context. Check this video for more info about evaluation contexts.

 

I'll be waiting for your response!

Anonymous
Not applicable

Hi @gtacchini

 

Now that makes sense. Here are my measures

Monthly Salary = 
VAR MonthEnd = MAX ( 'Date'[Date] )
VAR MonthStart = MIN ( 'Date'[Date])
VAR StartDate = CALCULATE ( MAX ( Employee[Start_Date__c] ), Employee[Start_Date__c] < MonthEnd )
VAR EndDate =   CALCULATE ( MIN ( Employee[Employment_End_Date__c] ),   Employee[Employment_End_Date__c] > StartDate  )
VAR MonthlySalary =
    CALCULATE (
        SELECTEDVALUE(Employee[Monthly CTC] ),
        Employee[Start_Date__c] = StartDate
    )
VAR DaysEmployed =
    DATEDIFF (
        MAX ( StartDate, MonthStart ),
        IF ( ISBLANK ( EndDate ), MonthEnd, MIN ( EndDate, MonthEnd ) ),
        DAY
    ) +1
VAR DaysInMonth = DAY ( MonthEnd )
RETURN
    IF ( DaysEmployed > 0, MonthlySalary * DaysEmployed / DaysInMonth )
TOTAL CTC = SUMX( VALUES(Employee[Employee.Id]), [Monthly Salary])

 

Thanks!

Yes, thats the trick. You have a semi-additive measure. Totals are not gonna match filtered values. 

 

Try thinking about this: 

    IF ( DaysEmployed > 0, MonthlySalary * DaysEmployed / DaysInMonth )

This condition is not being evaluated for each month but for the entire dataset. 

 

Try reading this and watching the video on my last reply, It'll help you debug and reach a solution. 

Anonymous
Not applicable

Thank you @gtacchini! appreciate your help. I'll definitely check the 2 links you shared

jdbuchanan71
Super User
Super User

Check the list of filters that are being applied to each of the visuals. You can see the list by hovering over the funnel icon on the top right of the visual. It looks like there is an additional filter hitting the card that is not hitting the other 2.

jdbuchanan71_0-1633794079694.png

You could also just remake the card and see if that fixes it.

 

Anonymous
Not applicable

Hi @jdbuchanan71 thank you for responding. I dont have filters in any of the visuals. What i do have are page filters. I even cleared out all my page filters but still getting different totals

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.