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
Sasha
Helper III
Helper III

Preserving TOTAL

Hi,

assume I have two customers:

Customer A paid $100

Customer B paid $50

 

I would like to show top 1 customer by paymnet.

Choosing the correct filter I get

Customer Payment 

A               $100

Total         $100

 

How can I show an extra column with % of total payment, equaling to 0.66 (100/150).

In other words - I would like to define a measure that is always equals to sum of both payments, regardless of the filter. 

Thank you in advance,

Alex

2 ACCEPTED SOLUTIONS
TomMartens
Super User
Super User

Hey,

 

this measure creates what you are looking for

Payment vs Payment All = 
var currentPayment = CALCULATE(SUM('Table1'[Payment]))
var AllPayment = CALCULATE(SUM('Table1'[Payment]),ALL('Table1'[Customer]))
return
DIVIDE(currentPayment, AllPayment, BLANK()) 

and a little screenshot:

image.png

Hopefully this provides what you are looking for.

 

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

LivioLanzo
Solution Sage
Solution Sage

You can do it like this: 

 

=DIVIDE( SUM( Data[Amount] ), CALCULATE( SUM( Data[Amount] ), ALL( Data[Customer] ) ) )

 

Capture.PNG

 


 


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


Proud to be a Datanaut!  

View solution in original post

3 REPLIES 3
Sasha
Helper III
Helper III

Thank you both!

LivioLanzo
Solution Sage
Solution Sage

You can do it like this: 

 

=DIVIDE( SUM( Data[Amount] ), CALCULATE( SUM( Data[Amount] ), ALL( Data[Customer] ) ) )

 

Capture.PNG

 


 


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


Proud to be a Datanaut!  

TomMartens
Super User
Super User

Hey,

 

this measure creates what you are looking for

Payment vs Payment All = 
var currentPayment = CALCULATE(SUM('Table1'[Payment]))
var AllPayment = CALCULATE(SUM('Table1'[Payment]),ALL('Table1'[Customer]))
return
DIVIDE(currentPayment, AllPayment, BLANK()) 

and a little screenshot:

image.png

Hopefully this provides what you are looking for.

 

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

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.