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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
FJH2024
Frequent Visitor

How to avoid blank codes/values being removed

Hi all,

 

I hope everyone is well!

 

I am creating a new Dashboard but I'm having some issues I'm hoping someone might have an answer to 🙂

 

I have two main tables, a PostedSalesShipmentHeader and a ShipToAddress one. Both tables include a 'Ship-to Code', but when creating a relationship between them I'm getting a Many-to Many message as the ShipToAddress table does not contain a blank value in the code column, whereas the SalesShipmentHeader table does. Here's some screenshots:

 

FJH2024_0-1731061084088.png

FJH2024_1-1731061091693.png

 

So I'm finding that, when adding values to a table visual, the blank codes will stay there up until the point I bring in a value from the ShipToAddress table:

FJH2024_2-1731061203198.pngFJH2024_3-1731061212993.png

 

I want to keep the blank values in the Ship_to_Code column visible in the table, so if the Code field is blank then the Address column doesn't populate with anything. Is there a way for me to do this?

 

I hope this makes sense! Thanks so much for any help in advance 🙂 

 

1 ACCEPTED SOLUTION
vojtechsima
Resident Rockstar
Resident Rockstar

@FJH2024  hello,

the way power bi "hide" the row is that there is blank value for the measure you use. If you wanna brute force it, you can set your field by right clicking and click "Show data with no values" (or something like that.

Alternatively, you can modify measure that would calculate something for the blank values as well. (be careful with these, this can go quickly sidewise, as it will assign value to everything in your table).

View solution in original post

2 REPLIES 2
vojtechsima
Resident Rockstar
Resident Rockstar

@FJH2024  hello,

the way power bi "hide" the row is that there is blank value for the measure you use. If you wanna brute force it, you can set your field by right clicking and click "Show data with no values" (or something like that.

Alternatively, you can modify measure that would calculate something for the blank values as well. (be careful with these, this can go quickly sidewise, as it will assign value to everything in your table).

Angith_Nair
Continued Contributor
Continued Contributor

Hi @FJH2024 

 

Use the below dax:

DisplayedAddress = 
IF(
    ISBLANK(SELECTEDVALUE(PostedSalesShipmentHeader[Ship-to Code])),
    BLANK(),
    MAX(ShipToAddress[Address]) 
)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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