Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
geeklarokcmie
Helper III
Helper III

Calculate percentage based on the area

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.

AreaSum of money spentPercentage based on total by area
BO10,9353.090992227
FA79242.67676768
IA180161.876110124
IT40578.33127927
Total33,800 

 

Thank you

 

1 ACCEPTED SOLUTION

Hi @geeklarokcmie 

 

Would a measure like this help?

Pct = 
    DIVIDE(
        SUM( 'Table'[Sum of money spent] ),
        CALCULATE(
            SUM('Table'[Sum of money spent] ),
            ALL( 'Table' )
        )
    )

View solution in original post

4 REPLIES 4
rajendraongole1
Super User
Super User

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!!





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

Proud to be a Super User!





Im getting all the percentage values as 100.00% using your DAX measure

Hi @geeklarokcmie 

 

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 🙂

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.