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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DRossi
Helper III
Helper III

If blank then return ...

Hi all,

 

I created a nested IF formula( see below). This works great when there is data however it is returning 'Outstanding' when there is no data for the period (I assume it is becuase of 0).

 

How can I add in- IF blank then return 'Not Eligible' instead of it defaulting to zero?

 

NA Ratings =
IF(
[No Access Rate] >= 0 && [No Access Rate] <= 0.014,
"Outstanding",
IF(
[No Access Rate] > 0.015
&& [No Access Rate] <= 0.02,
"Exceeds Expectations",
IF(
[No Access Rate] > 0.02
&& [No Access Rate] <=0.025,
"Acheiving Expectations",
IF(
[No Access Rate] > 0.025
&& [No Access Rate] <= 1,
"Below Expectations"
)
)
)
)
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Have you tried this?

 

 

NA Ratings = 
IF(
ISBLANK([No Access Rate]), "Not Eligible",
IF(
[No Access Rate] >= 0 && [No Access Rate] <= 0,014,
"Outstanding",
IF(
[No Access Rate] > 0,015
&& [No Access Rate] <= 0,02,
"Exceeds Expectations",
IF(
[No Access Rate] > 0,02
&& [No Access Rate] <=0,025,
"Acheiving Expectations",
IF(
[No Access Rate] > 0,025
&& [No Access Rate] <= 1,
"Below Expectations"
)
)
)
)
)

 

If this is still not working for you, can you give me the code behind the measure [No Access Rate]?

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Have you tried this?

 

 

NA Ratings = 
IF(
ISBLANK([No Access Rate]), "Not Eligible",
IF(
[No Access Rate] >= 0 && [No Access Rate] <= 0,014,
"Outstanding",
IF(
[No Access Rate] > 0,015
&& [No Access Rate] <= 0,02,
"Exceeds Expectations",
IF(
[No Access Rate] > 0,02
&& [No Access Rate] <=0,025,
"Acheiving Expectations",
IF(
[No Access Rate] > 0,025
&& [No Access Rate] <= 1,
"Below Expectations"
)
)
)
)
)

 

If this is still not working for you, can you give me the code behind the measure [No Access Rate]?

 

Worked perfectly, thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.