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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Mohamadmonem
Regular Visitor

Join 2 different tables without removing unique codes

Hello everyone!

I have 2 different tables.

One of them is related to planned production.

Another is actual production.

I would like to join 2 tables. The similar column is product code. However, when I make a model between them, the power BI visualizes just those product codes which have produced.

the report must visualize all of codes even those they have not produced.

For example, in table 1(planned production), we have 3 codes. 101 , 102, 103

And in table 2(actual production), we have 102,103, 104

In my report, power bi just visualize 102, 103

How to solve that?

Thanks in advance

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Mohamadmonem 

 

One recommended practice is to add a Dim product table to the model. You can create a Dim table with below DAX simply. It will have all distinct product values from planned and actual tables. This can avoid missing products. Then link the Dim table (one-side) to another two tables (many-side) on Product columns. 

Product = DISTINCT(UNION(DISTINCT('actual production'[Product]),DISTINCT('planned production'[Product])))

vjingzhang_0-1661310225836.png

 

When you create a visual, use Dim table's Product column in it. 

vjingzhang_1-1661310299617.png

 

In addition, Power BI displays non-blank data in visuals by default. So if your data is missing due to that it has blank values, you can right click on Product column in the field and check the "Show items with no data" option in the context menu. 

vjingzhang_2-1661310679862.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Mohamadmonem 

 

One recommended practice is to add a Dim product table to the model. You can create a Dim table with below DAX simply. It will have all distinct product values from planned and actual tables. This can avoid missing products. Then link the Dim table (one-side) to another two tables (many-side) on Product columns. 

Product = DISTINCT(UNION(DISTINCT('actual production'[Product]),DISTINCT('planned production'[Product])))

vjingzhang_0-1661310225836.png

 

When you create a visual, use Dim table's Product column in it. 

vjingzhang_1-1661310299617.png

 

In addition, Power BI displays non-blank data in visuals by default. So if your data is missing due to that it has blank values, you can right click on Product column in the field and check the "Show items with no data" option in the context menu. 

vjingzhang_2-1661310679862.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

AlexisOlson
Super User
Super User

It sounds like you did some kind of inner join on the two tables rather than appending them.

 

Even if you do append them, it would still be useful to have a product dimension table.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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