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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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.

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
Top Kudoed Authors