March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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.
@DylanBanINT , Create a new column
= [Amount] /10
Hi would this not just divide all amounts by 10?
You can create a new column like
Switch( True(),
[Amount] = 100, .1 ,
[Amount] = 60, .06 ,
0
)
Modify as per need
Hi, is there a way to do it so it would be like if Score is 0-100 then Amount / 0-10%? So like a range
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |