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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Creating a dimension table (with hierarchy)

Hello  -  I am using our Orders table to create a Family Code dimension table for our products.   (just referencing the table, and deleting all other columns).  

 

However, we also have a hierarchy.   

 

So, a particular type of product, goes under a family code, along with other related products. Something like:

Bikes:  Mountain Bikes,  Cruising Bikes,  Double-Seated Bikes  

Tents:  Round Tents,  Square Tents, Rectangle Tents

 

or 

 

Family Code    Product Code

 

HAPO                HAPO-A

                          HAPO-B

                          HAPO-C

LAPR                  LAPR-A

                          LAPR-B

                          LAPR-C

 

I was going to just keep these two columns for my Dim table, but then quickly realized I would not have unique values on the Family Code.     So, my question is, what is the best practice to create a dim table when you have hiearchies?  

 

Thanks in advance!

4 REPLIES 4
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

You may have interest in this nice blog (Basics of Modeling in Power BI: What is a Dimension Table and Why Say No to a Single Big Table - RADACAD) to have a deeper understanding about a dimension table in a model. I learnt a lot from it. 

 

Regards,
Community Support Team _ Jing

HashamNiaz
Solution Sage
Solution Sage

Hi !

Try creating a [Family Code] dimension with only unique family code values either using DAX or Power Qury (M);

 

DimFamilyCode = DISTINCT(Table[Family Code])

 

You can treplave [Table] with your existing table name. Now you can create a 1-many relationship between [DimFamilyCode] & [Table] based on [Family Code] column.

 

This technique is called bridging table. Similary you need to have a dimension with Distinct Product code & connect this table to [Table] using 1-many relationship based on [Product Code] column.

 

Regards,

Hasham

CNENFRNL
Community Champion
Community Champion

For a dimension table, it's NOT necessarily to make each column contain distinct values.

Typically, take the most common time table for example, Year and Month columns usually contain repeated items whereas Date column is distinct; because the granularity of Date is what we pay attention to.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Anonymous
Not applicable

Yes, that makes sense.   So as long as at least one column contains unique values, and that is the key column, then it can be a dimension table, correct?

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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