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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello 🙂
I have two tables: a register of claimed products (complaint number, type, claimed qty, reason etc.) and table of all produced products (type, produced qty etc.).
First table (register of claimed products)
Complaint No. | Type | Claimed qty | Year | Quarter |
20210307 | wardrobes | 7 | 2021 | 1 |
20210422 | tables | 30 | 2021 | 2 |
20210831 | chairs | 100 | 2021 | 3 |
Second table (all produced products)
Code | Type | Produced qty | Year | Quarter |
WARD001 | wardrobes | 300 | 2021 | 1 |
TABL008 | tables | 758 | 2021 | 2 |
CHA005 | chairs | 2310 | 2021 | 3 |
Based on first table, I created a report with statistics and charts. However I'd like to add two other indicators:
I created three measures:
Solved! Go to Solution.
Hey @Karlie69 ,
I recommend that adjust your table to this
create three dimension tables
Then you can create relationships between these tables and the already existing ones, that are called fact tables.
You have to be aware that a relationship between the tables can be established on using a single column, for this reason you have to create a new column in the existing tables that are concatenating the content from the year/quarter columns.
Creating a data model is key for performance, analytical capability, and also data visualization. For this reason, I recommend this tutorial as a starter for data modeling with Power BI: Model data in Power BI - Learn | Microsoft Docs
Hopefully, this provides some new insights and will help to tackle your challenge.
Regards,
Tom
Hey @Karlie69 ,
I recommend that adjust your table to this
create three dimension tables
Then you can create relationships between these tables and the already existing ones, that are called fact tables.
You have to be aware that a relationship between the tables can be established on using a single column, for this reason you have to create a new column in the existing tables that are concatenating the content from the year/quarter columns.
Creating a data model is key for performance, analytical capability, and also data visualization. For this reason, I recommend this tutorial as a starter for data modeling with Power BI: Model data in Power BI - Learn | Microsoft Docs
Hopefully, this provides some new insights and will help to tackle your challenge.
Regards,
Tom