Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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:
Title | Score | Amount | Savings |
Cookie | 40 | £100 | |
Cake | 60 | £50 | |
Sprite | 20 | £60 | |
Cola | 0 | £250 | |
Bread | 100 | £180 | |
Baguette | 60 | £40 | |
Slurpie | 40 | £55 | |
Green Tea | 20 | £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
Solved! Go to Solution.
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.
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.
@DylanBanINT , You can create a new column like
Switch( True(),
[Amount] = 100, .1 ,
[Amount] = 60, .06 ,
0
)
Modify as per need