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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Lexey
Helper I
Helper I

Percentage between two values

Please help in solving one problem. You need to calculate the percentage as the ratio of [delta plan] and [plan]. Tried different options but have not yet found solutions.Screenshot_4.jpg

6 REPLIES 6
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Lexey,

 

What you want to calculate is 2198/3548=0.6195 for the first row under [delta % plan], right?

 

If so, you should modify the measure [delta % plan] as below:

delta % plan = [delta plan]/ [Values of budget]

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I need row context.,
 1 row = [delta plan]/[Values of budget]
 2  row = [delta plan]/[Values of budget]
3 row = [delta plan]/[Values of budget]

 

you get a total percentage that doesn't suit me. Thanks

You could try SUMX(Table;[delta plan]/[Values of budget].

 

This is for a Measure.

Calculated Column would just be [delta plan]/[Values of budget]

 

I'm not quite sure wether your columns is name Values of budget or plan.

 

Please try and let me know.

Thanks
I didn't get quite the right result

 

delta % plan = sumx('fact'; [delta plan]/ [Values of budget])

 

Screenshot_5.jpg

What would be your expected results?

 

For the total row I see it makes no sense.

You may have to change to delta % plan = sum([delta plan]/sum[Values of budget]

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors