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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Omitting Blank Fields?

What do I have to do to my formula to ensure that people who have blank values don't get any value for NPS Level? If they have no values they shouldn't be assigned "NPS Gold":

1.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous,

you can use this formula

NPS Level = SWITCH(TRUE(), [NPS Retention 2] = BLANK(), BLANK(),  [NPS Retention 2] > -20, "NPS Gold", "N/A")

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hey @Anonymous

 

Maybe try something like:

 

NPS Level =
IF(
   NOT(ISBLANK(NPS Retention 2])),
   IF(
      [NPS Retention 2] > - 20,
      "NPS Gold",
      "N/A"
   ),
   BLANK()
)
   

Hope this helps,

Parker

Anonymous
Not applicable

@Anonymous @Anonymous Thanks to both of you! Tried out both ways and they both work.

Anonymous
Not applicable

@Anonymous,

you can use this formula

NPS Level = SWITCH(TRUE(), [NPS Retention 2] = BLANK(), BLANK(),  [NPS Retention 2] > -20, "NPS Gold", "N/A")

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.