Forum Discussion
Wrong Subtotal when using Variable
Hi Anonymous,
I made one sample here, However that the measure seemed worked well in my side. Could you please share your sample data to me if possible? And what are the formulas of your [Total Actual Billing] and [Total Budget]?
Attached the pbix for your reference.
https://www.dropbox.com/s/2rl06yza5z6opmg/Wrong%20Subtotal%20when%20using%20Variable.pbix?dl=0
Regards,
Frank
Hi v-frfei-msft
In some measures, I get the same result when I use the VAR expression (as expected ) and in some, I don't (in the subtotal for example).
Perhaps it has to do with the SUMX ...
Why would you wrap your simple SUM with a CALCULATE? What is the benefit of that?
Regards,
Tamir
- v-frfei-msft7 years agoCommunity Support
Hi Anonymous,
Could you please tell me what are your measures of [Total Actual Billing] and [Total Budget] and kindly share your sample data if possible?
Regards,
Frank
- Anonymous7 years agoNot applicable
wefwefwef
Hi v-frfei-msft
I cannot share data.
However, I discovered the pattern of the wrong calculation and perhaps you could explain why Power BI behaves so...
Please see snapshot...
When I use the VAR expression, the Total is actually multiplied by 12.
If I choose only 3 months, it then multiplies the actual total by 3 and so on...
Something in the way that the SUMX is iterating over the VAR expression is the cause for the multiplication in the number of presented rows.
This is my workaround solution:
Diff Forecast - Actual w VAR = Var DiffForecastToActual = [Total Forecast Fees] - [Total Actual Billing] Var CountVisibleRows = COUNTROWS(VALUES(dimCalendar[MonthYear])) RETURN IF( HASONEVALUE(dimCalendar[MonthYear]), DiffForecastToActual, DIVIDE( SUMX( VALUES( dimCalendar[MonthYear]), DiffForecastToActual), CountVisibleRows) )Does that Make sense?
Regards,
Tamir