Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I need a formula to return a value. Scenario.... I have a score that is a percentage. If the score is 99% or better it would return "Outstanding", 96% to 99% would return "Very Strong", 93% to 96% "Effective"...... not sure how to write this.....
Solved! Go to Solution.
It'd generally take the form of:
New Measure = if([oldmeasure]>0.99,"Outstanding",if([oldmeasure]>0.96,"Very Strong",if([oldmeasure]>0.93,"Effective","Useless")))
for however many levels you have
It'd generally take the form of:
New Measure = if([oldmeasure]>0.99,"Outstanding",if([oldmeasure]>0.96,"Very Strong",if([oldmeasure]>0.93,"Effective","Useless")))
for however many levels you have
Thank you!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 28 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 74 | |
| 63 | |
| 40 | |
| 23 | |
| 22 |