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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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