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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
LCarenzo
Helper I
Helper I

Formula Help

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.....

1 ACCEPTED SOLUTION
jthomson
Solution Sage
Solution Sage

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

View solution in original post

2 REPLIES 2
jthomson
Solution Sage
Solution Sage

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!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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