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
Anonymous
Not applicable

Text replace with Blank on IF Loop

Hi Team, 

Thanks in advance for your efforts to help me. 

I need a small help on IF loop on PowerBi

 

 

Location = IF(ISERROR(LOOKUPVALUE(Location[Address],Location[Location Name],'Opened Ticket'[Reported By.Location - Room])),
IF(ISERROR(LOOKUPVALUE(Location[Address],Location[Location Name],'Opened Ticket'[Reported By.Organization Unit])),
"OTHERS",
LOOKUPVALUE(Location[Address],Location[Location Name],'Opened Ticket'[Reported By.Location - Room])),
LOOKUPVALUE(Location[Address],Location[Location Name],'Opened Ticket'[Reported By.Organization Unit])
)

 


Above is my code, I'm getting the results correctly but, those which can find any results should return "OTHERS". For some reason, it just comes as BLANK.  

Do you think you can help?Picture 4 - Location.PNGPicture 3 - Opened ticket.PNGPicture 2 - Opened ticket.PNGPicture 1 - Opened ticket.PNG

 

@selimovd 

 

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

it's because of the order of you IFs. It won't return "OTHERS". In general I find that approach a little hard to read.

I also don't think you need ISERROR as LOOKUPVALUE just returns BLANK() if it won't find a match.

 

So I would use variables and a combination of SWITCH and TRUE instead of the IFs. For me that is more clear to read. Check it out:

Location =
VAR vReportedByLocationRoom =
    LOOKUPVALUE(
        Location[Address],
        Location[Location Name], 'Opened Ticket'[Reported By.Location - Room]
    )
VAR vReportedByOrganizationUnit =
    LOOKUPVALUE(
        Location[Address],
        Location[Location Name], 'Opened Ticket'[Reported By.Organization Unit]
    )
RETURN
    SWITCH(
        TRUE(),
        vReportedByLocationRoom <> BLANK(), vReportedByLocationRoom,
        vReportedByOrganizationUnit <> BLANK(), vReportedByOrganizationUnit,
        "OTHERS"
    )

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

3 REPLIES 3
selimovd
Super User
Super User

Hey @Anonymous ,

 

it's because of the order of you IFs. It won't return "OTHERS". In general I find that approach a little hard to read.

I also don't think you need ISERROR as LOOKUPVALUE just returns BLANK() if it won't find a match.

 

So I would use variables and a combination of SWITCH and TRUE instead of the IFs. For me that is more clear to read. Check it out:

Location =
VAR vReportedByLocationRoom =
    LOOKUPVALUE(
        Location[Address],
        Location[Location Name], 'Opened Ticket'[Reported By.Location - Room]
    )
VAR vReportedByOrganizationUnit =
    LOOKUPVALUE(
        Location[Address],
        Location[Location Name], 'Opened Ticket'[Reported By.Organization Unit]
    )
RETURN
    SWITCH(
        TRUE(),
        vReportedByLocationRoom <> BLANK(), vReportedByLocationRoom,
        vReportedByOrganizationUnit <> BLANK(), vReportedByOrganizationUnit,
        "OTHERS"
    )

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 
Anonymous
Not applicable

Thank you very much 😃
This indeed worked like charm.
I'll be very happy to give you more than 1 thumbs up 😉

Have a wonderful day 

Hey @Anonymous ,

 

I'm happy it works 😊

Best regards
Denis

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.

Top Solution Authors
Top Kudoed Authors