Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have multiple fact tables and would like to create dim tables from each fact table in the power query to make further joins and an effective relationship between multiple fact tables.
To create a Dim table, I want a distinct column from the fact table.
I performed the below steps to create a dim table but not able to get accurate results.
Home --> Transform Data --> select fact table --> select ‘duplicate’ (to make this as dim table) --> choose column --> select the column --> right click on the column --> Remove Duplicates
But in the resultant data, I could see few duplicate values, and also, few values are missing in the dim table.
Please help me with this.
Solved! Go to Solution.
@emohammad
Before Remove Duplicate action, choose Remove Other Columns. This way, you will get only unique values.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi @emohammad
Could you provide some sample data or pbix file (remove sensitive data) which can reproduce this issue, so that we can help check the details.
Another option is to use DAX functions SUMMARIZE or DISTINCT to create Dim tables if you are using Power BI Desktop. For example,
DimTable = SUMMARIZE ( 'table', 'table'[columnName] )
DimTable = DISTINCT ( 'table'[columnName] )
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
@emohammad
If you can share a screenshot or share the PBIX file without the confidential data, I will be able to see what is exactly is wrong with the report.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@emohammad
Before Remove Duplicate action, choose Remove Other Columns. This way, you will get only unique values.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.