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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Tony88
Helper I
Helper I

Why formula is showing answers that don't have data?

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

 

Tony88_1-1680837968167.png

 

File

https://drive.google.com/file/d/1dLxmfu3qWBaN6VQCwfCp4oxekbAm69SS/view 

 

Thank you 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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)

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Tony88
Helper I
Helper I

@amitchandak 

 

Thank you for the help, but why it does not work with IF tho? 

 

amitchandak
Super User
Super User

@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)

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.