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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
deven11
Frequent Visitor

I want to do subtraction and devide of (sum of assasible value - realization value)/sum of assasible

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @deven11 ,

 

at what point are you stuck or what did you try so far?

It should be easy, like:

Division Measure =
DIVIDE (
    SUM ( table1[assasible value] ) - SUM ( table2[realization value] ),
    SUM ( table1[assasible value] )
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Connect with me: LinkedIn

View solution in original post

2 REPLIES 2
anmolmalviya05
Super User
Super User

Hi @deven11, Hope you are doing good.

 

To perform a calculation in Power BI that subtracts the realization value from the sum of assessable value and divides the result by the sum of assessable value, you can create a calculated measure using DAX (Data Analysis Expressions). Here's the DAX formula you can use:

MeasureName =
DIVIDE(
SUM(TableName[AssessableValue]) - SUM(TableName[RealizationValue]),
SUM(TableName[AssessableValue])
)

 

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

 

Let's Connect on LinkedIn: https://www.linkedin.com/in/anmol-malviya/?originalSubdomain=in

selimovd
Super User
Super User

Hey @deven11 ,

 

at what point are you stuck or what did you try so far?

It should be easy, like:

Division Measure =
DIVIDE (
    SUM ( table1[assasible value] ) - SUM ( table2[realization value] ),
    SUM ( table1[assasible value] )
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Connect with me: LinkedIn

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors