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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
DylanBanINT
Helper I
Helper I

Percentage calculation based off of a number range

Hi, I am looking to create a column on Power BI that will calculate a percentage of a number based on the 'score' it has so that it will create an 'expected savings' 

 

For example I have a table like this: 

 

TitleScoreAmountSavings
Cookie40£100 
Cake60£50 
Sprite20£60 
Cola0£250 
Bread100£180 
Baguette60£40 
Slurpie40£55 
Green Tea20£180 

 

Based off the score I would like to calculate a percentage of 'savings' - If it has a score of 100 it will calculate 10% and if it has a score of 60 it will calculate 6% etc etc

1 ACCEPTED SOLUTION
truptis
Community Champion
Community Champion

Hi @DylanBanINT ,

Try this:

Expected saving = score/10 

 

Eg- if score = 95/10 then expected savings would be 9.5

 

Please hit the thumbs up and mark it as a solution if it helps you. Thanks.

 

View solution in original post

2 REPLIES 2
truptis
Community Champion
Community Champion

Hi @DylanBanINT ,

Try this:

Expected saving = score/10 

 

Eg- if score = 95/10 then expected savings would be 9.5

 

Please hit the thumbs up and mark it as a solution if it helps you. Thanks.

 

amitchandak
Super User
Super User

@DylanBanINT , You can create a new column like

 

 

Switch( True(),

[Amount] = 100, .1 ,

[Amount] =  60, .06 ,

0

)

 

Modify as per need

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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