Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello experts,
I'm looking for a measure that calculates a percentage based on the total of all the money spent divided by sum of money spent in each area.
Area | Sum of money spent | Percentage based on total by area |
BO | 10,935 | 3.090992227 |
FA | 792 | 42.67676768 |
IA | 18016 | 1.876110124 |
IT | 4057 | 8.33127927 |
Total | 33,800 |
Thank you
Solved! Go to Solution.
Would a measure like this help?
Pct =
DIVIDE(
SUM( 'Table'[Sum of money spent] ),
CALCULATE(
SUM('Table'[Sum of money spent] ),
ALL( 'Table' )
)
)
Hi @geeklarokcmie - First, create a measure to calculate the total amount spent.
Eg: TotalAmountSpent = SUM(SpendingData[some of amount spent])
create an one more measure to calculate the percentage of money spent in each area
PercentageSpentInArea =
DIVIDE(
SUM(SpendingData[Amount]),
[TotalAmountSpent],
0
)
use the above measure in your table chart and see the values will work as per expectations.
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Im getting all the percentage values as 100.00% using your DAX measure
Would a measure like this help?
Pct =
DIVIDE(
SUM( 'Table'[Sum of money spent] ),
CALCULATE(
SUM('Table'[Sum of money spent] ),
ALL( 'Table' )
)
)
This worked perfectly. Thank you 🙂
User | Count |
---|---|
82 | |
72 | |
67 | |
47 | |
36 |
User | Count |
---|---|
111 | |
56 | |
50 | |
42 | |
40 |