Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello Team,
I have to develop one matrix table with Customer - Plan - Actual
Plan comes from 1 table, actual production comes from table 2 and customer is available in both table as like below
Table 1 :
Table 2 :
you can see plan is for one customer and actual producted qty for another customer.
If I put a matrix table I am expecting like below
But in Power Bi, it taking only actuals and not showing BPCL as 0.
am applying filter of date from both table 1 and 2. So, it showing like this.
May I know , how can show all values ? I have tried "tables with no value" option but didn't work out.
Solved! Go to Solution.
Hi, @Karthik12,
you need to work a little with your data model:
1. create a customer table, with all customers from both of your table. This you can do with power query(transform data)
2. create a date table, this you can do with DAX, using this code:
Dates = GENERATESERIES(date(2020,1,1),date(2025,12,31),1)
Then create relationships between your tables:
And now use customer from the customer-table and date from the dates-table on axis and slicers.
I would recommend reading a little about modelling, either google power bi modelling or startt out with this article:
Power BI Data Modeling | Step by Step Guide with Examples (wallstreetmojo.com)
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Hi, @Karthik12,
you need to work a little with your data model:
1. create a customer table, with all customers from both of your table. This you can do with power query(transform data)
2. create a date table, this you can do with DAX, using this code:
Dates = GENERATESERIES(date(2020,1,1),date(2025,12,31),1)
Then create relationships between your tables:
And now use customer from the customer-table and date from the dates-table on axis and slicers.
I would recommend reading a little about modelling, either google power bi modelling or startt out with this article:
Power BI Data Modeling | Step by Step Guide with Examples (wallstreetmojo.com)
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.