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
Otto_Luvpuppy
Helper II
Helper II

Totals Calculations using a % - a real problem

HI,

I have a calculation that's not working at the TOTAL level...it's fine at row level. I can see the problem and why it's happening but can't figure out a solution...hopefully a DAX Wizard will have an answer.

 

Below is a table of results. The BLUE totals are correct and would be the result if you had summed the figures in Excel.
The RED totals are the results from a Power BI table...as you can see the 'Adjusted by Probability' total is incorrect.
The total should be a sum of that column, whose figures are simply the 'Year 1 Authorised' figure multiplied by the 'Probabiliy'.
At a row level this calculation works fine.
I can see the problem for the Total is that the calculation is simply taking the sum of the 'Year 1 Authorised' and multiplying it by the sum of the 'Probability'...in this case 6.1...which is obviously wrong but understandable.
How to I fix this, I'm totally YouTube'd out!

This is the Measure I have created:

 

Year 1 Adjusted by Probability =
VAR _Chance =
CALCULATE (
SUM ( Pipeline_MFMA[xDelChance_Number] )
)
VAR _Authorised =
CALCULATE (
SUM ( Pipeline_MFMA[xCPY1] ) - [CPY1_DEL_Unauthorised],
Pipeline_MFMA,
Pipeline_MFMA[xDevDel_CPY1] = "Delivery"
)
RETURN
_Authorised * _Chance
 
 
ProjectYear 1 AuthorisedYear 1 Adjusted by ProbabilityProbability
Scheme 1£116,356.31£58,178.160.5
Scheme 2£68,799.15£41,279.490.6
Scheme 3£35,205.69£7,041.140.2
Scheme 4£18,367.85£11,020.710.6
Scheme 5£0.00£0.000.8
Scheme 6£0.00£0.000.8
Scheme 7£0.00£0.000.6
Scheme 8£0.00£0.000.8
Scheme 9£0.00£0.000.6
Scheme 10£0.00£0.000.6
Correct£238,729.00£117,519.50 
Power BI Totals£238,729.00£1,456,246.006.1

 

Any help would be a great Christmas present 😁

 

Thanks

 

Paul

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Try this measure

Measure = SUMX(VALUES(Pipelime_MFMA[Project]),[Year 1 Adjusted by Probability])

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

20 REPLIES 20
Ashish_Mathur
Super User
Super User

Hi,

Try this measure

Measure = SUMX(VALUES(Pipelime_MFMA[Project]),[Year 1 Adjusted by Probability])

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Ashish_Mathur - I had the same issue and this solution gives me the right result. However the Project field in my case is a field parameter. For example my measure is -
Measure Final =
var _total =
IF(HASONEFILTER(WD_Dim[L3]),[Measure Interim],
SUMX(VALUES(WD_Dim[L3]),[Measure Interim]))
return _total
This gives right result, but based on field paramater it can be L3, L2 field etc from the WD_Dim table , so how do i tweak the above measure to get that result?

Hi,

I am not sure how much i can help but i can try.  Share the download link of the PBI file.  Show the visual clearly in which you have dragged the measure and would like to incorporate the change.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Otto_Luvpuppy ,

 

Currently you cannot use Field parameters to change your table dynamicaly, only option would be to do SUMX for each of the values in the field parameters.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thank you for your reply. That's clear. However I do have a related question and would be great if you can help. I have measure generated using formula (1-B) * A. The values appear right in Measure and I show them as % of column total using power bi functionality to show calc as % of column total in visualization pane.
However I want to achive same thing using measure. so I want a measure in DAX to show me same resultset as % of column total and could you please help. Result is measure value / grand total column of column, so 345,5/463,7 = 74,5%

askpbiuser_0-1698766408171.png

 

Hi @askpbiuser

 

Try the following code:

% Total = DIVIDE([Measure], CALCULATE([Measure], ALLSELECTED(Table[Cust]))

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi Ashish,

Thanks for your repsonse.

I'm not quite sure how this would work as the final part of your measure references itself...so doesn't that make it a circulare reference?

 

Paul

Mine is a new measure.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi Ashish,
Ignore my last post I did what I thought you meant and it WORKS!!!!!!!!!
Brilliant...thank you very much...you have saved my PC from being thrown out of my window 😁

 

Paul

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi Ashish,

So are you saying that my original measure is fine but use it in your measure for the table column I want to show?

Paul

Yes.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Ashish,
This solution works brilliantly if I create a seperate measure as you suggested but to reduce the number of measuer I thought the same logic would work if I simply created another variable in the first measure and then used your code after the RETURN....as shown below...

CPY1_DEL_Authorised_% =
VAR _Chance =
CALCULATE (
SUM ( Pipeline_MFMA[xDelChance_Number] )
)
VAR _Authorised =
CALCULATE (
SUM ( Pipeline_MFMA[xCPY1] ) - [CPY1_DEL_Unauthorised],
Pipeline_MFMA,
Pipeline_MFMA[xDevDel_CPY1] = "Delivery"
)
VAR _Result = _Authorised * _Chance
RETURN
SUMX(VALUES(Pipeline_MFMA),_Result)
 
...but this gives the old incorrect result and I can't understand why.
What is different about using a seperate measure as a opposed to what I've done in the code with the variable? Just interested in why that happens....content to use seperate measures if I need to.

Thanks again
 
Paul 

Hi,

I do not work with variables so i would not be able to help.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

No problem...thanks for you help on this.

MFelix
Super User
Super User

Hi @Otto_Luvpuppy ,

 

You need to use a SUMX in order to make the correct calculation of the value try the following measure:

 

Year 1 Adjusted by Probability =
VAR _Chance =
CALCULATE (
SUM ( Pipeline_MFMA[xDelChance_Number] )
)
VAR _Authorised =
CALCULATE (
SUM ( Pipeline_MFMA[xCPY1] ) - [CPY1_DEL_Unauthorised],
Pipeline_MFMA,
Pipeline_MFMA[xDevDel_CPY1] = "Delivery"
)
RETURN
SUMX(VAlUES(Table[Project],_Authorised * _Chance)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi Miguel,

Many thanks for your reponse...I'm trying to implement it now but can't see where the Table[Project] comes from, in the  final line, or what to replace it with.

 

Paul

Hi @Otto_Luvpuppy,

 

The table[project] is the column you present on your data that has the values Scheme 1, Scheme 2 and so on.

 

Since I did not know the name of the table and column place that generic name, you should replace by the column on your model regarding that Shecme values. 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi Miguel,

The problem is solved using a combination of your code and that of Ashish.....thank you both very much.

 

Paul

Hi Miguel,
Thanks again for taking thee time with this. I tried the following using your code...

VAR _Chance =
CALCULATE (
SUM ( Pipeline_MFMA[xDelChance_Number] )
)
VAR _Authorised =
CALCULATE (
SUM ( Pipeline_MFMA[xCPY1] ) - [CPY1_DEL_Unauthorised],
Pipeline_MFMA,
Pipeline_MFMA[xDevDel_CPY1] = "Delivery"
)
RETURN
SUMX(VAlUES(Pipeline_MFMA),_Authorised * _Chance)
Unfortunately I get the same result as I did with my original code.
 
Paul 

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.