Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hello,
I have a "Net Grade formula", please see below. The issue is it is showing -4 for the dates that don't have data. Can anybody please tell me why it's showing -4?
Net % w/OOO_Mth =
DIVIDE(
SUM('Closes_Assists_KB_NPS_ByMonthByManager (2)'[Closes]) + sum('Closes_Assists_KB_NPS_ByMonthByManager (2)'[WeightedElevations]),
[ClosedTragetOOOMth]
)Net Grade_Mth =
IF([Net % w/OOO_Mth] >= 0.8 , 8,
IF([Net % w/OOO_Mth] >= 0.7 && [Net % w/OOO_Mth] < 0.8, 4,
IF([Net % w/OOO_Mth] >= 0.6 && [Net % w/OOO_Mth] < 0.7, 2,
IF( [Net % w/OOO_Mth] <= 0.5 , -4, 0))))
File
https://drive.google.com/file/d/1dLxmfu3qWBaN6VQCwfCp4oxekbAm69SS/view
Thank you
Solved! Go to Solution.
@Tony88 , Try like
Switch( true() ,
isblank([Net % w/OOO_Mth]), blank(),
[Net % w/OOO_Mth] >= 0.8 , 8,
[Net % w/OOO_Mth] >= 0.7 , 4,
[Net % w/OOO_Mth] >= 0.6 , 2,
[Net % w/OOO_Mth] <= 0.5 , -4,
0)
@Tony88 , Try like
Switch( true() ,
isblank([Net % w/OOO_Mth]), blank(),
[Net % w/OOO_Mth] >= 0.8 , 8,
[Net % w/OOO_Mth] >= 0.7 , 4,
[Net % w/OOO_Mth] >= 0.6 , 2,
[Net % w/OOO_Mth] <= 0.5 , -4,
0)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 52 | |
| 41 | |
| 33 | |
| 32 |