The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 🙂
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
79 | |
72 | |
48 | |
39 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
57 |