Reputation: 20118
In my table primary key column have missing value, i have tried to fill using measure but it is not work because not full fill the primary key val of column to measure
Upvotes: 0
Views: 5873
Reputation: 784
For handling missing values, you need to follow the following two steps:
Note: The direction of the relationship plays a very important role in modeling in Power BI. The direction of the relationship means the way that filter propagates in Power BI. The uni-directional relationship will filter one table based on the other one. Sometimes you need to filter in a different direction, that is when the bi-directional relationship comes into play. However, bidirectional relationship comes with a cost of performance issues. Do not use bi-directional relationships blindly. Make sure you have designed your model in the right way first, and if that doesn’t work, then try other methods such as Cross-Filter DAX functions.
Upvotes: 6
Reputation: 20118
I have created static table as blow and create relationship with original tables then assigned value static table column on visual table which is working with out any issue
Create Static stable:
create relationship
assign column to visual table and filter result column should not be empty
Upvotes: 0