Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.