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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Sharing Data Relationships

Hi,

 

I have four tables which all have the same data column but I am having to create either multiple slicers or filters.

 

E.g. [Country] or [Product]

 

How can I share this relationship so that I only need to use one filter or sliver?

 

Kind regards

 

Dominic

7 REPLIES 7
CrisYan
Resolver III
Resolver III

Create dimension tables with all the (uniques) Countries/Products/etc you want to filter. Then make relationship between this Dim. Tables and your 4 other tables, and use the Dimension Tables' columns on the slicers.

 

Regards!

Anonymous
Not applicable

Hi Cris,

 

This seems like a great idea, but do you have a dummy's guide?

 

  • How can I create a table with this data in?
  • How can I create the relationships?

 

Kind regards


Dominic

Anonymous
Not applicable

@CrisYan I have created a new table with columns with th shared values in them. But I am struggling to connect this to all of the other tables (which all have at least one of the values in them).

 

Capture.PNGCapture 2.PNG

Hi @Anonymous,

 

Is the table "UK Revenue" the new table you created? I would suggest you create one dimension a table like below. Finally, we can get all the unique values without blanks.

Table =
FILTER (
    DISTINCT (
        UNION (
            VALUES ( Fields[Line Code] ),
            VALUES ( 'Volume By Month'[Line Code] ),
            VALUES ( 'Sales By Country'[Line Code] ),
            VALUES ( 'EU Revenue'[Line Code] )
        )
    ),
    ISBLANK ( [Line Code] ) = FALSE ()
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi Dale,

 

Is there any update on my reply?

 

Kind regards

 

Dominic

Anonymous
Not applicable

Hi @v-jiascu-msft,

 

I created the 'Fields' table in excel including columns of all the shared values to be the dimensions table.

 

Is this not what I was meant to do?

 

I need to connect all of the other tables you can see and can delete the 'Fields' table if this is not the best practice way to do it.

 

Kind regards

 

Dominic

Hi Dominic,

 

As far as I know, one dimension table only contains one field. For example, Date table, Product table. We don't integrate these two tables together. Please refer to the snapshot below. It could be easy to establish relationships and control the result.

Sharing_Data_Relationships

 

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors