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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Syndicate_Admin
Administrator
Administrator

Cross-table filter

Good morning

I have two tables:

- One of them contains a single column with names (namesT)

- The other table (data) has more data and among them a column with more than one name per column (name).

I would like to know how I can make a filter so that by selecting a value from the table (namesT), it takes out all the rows of the table (data) that contain that information.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Syndicate_Admin ,

 

I suggest you to Split Column in Power Query Editor.

My Sample:

vrzhoumsft_0-1683709030345.png

I add an index column and then split [NameT] column by comma,

vrzhoumsft_1-1683709067145.png

I suggest you to remove or inactive the relationship between two tables.

Filter Measure =
VAR _SELECTVALUE =
    VALUES ( 'Table'[NameT] )
VAR _Counttable1 =
    COUNTROWS ( _SELECTVALUE )
VAR _Counttable2 =
    CALCULATE (
        COUNTROWS ( 'Table (2)' ),
        FILTER ( 'Table (2)', [NameT] IN _SELECTVALUE )
    )
RETURN
    IF ( _Counttable1 = _Counttable2, 1, 0 )

Add this measure into visual level filter and set it to show items when value =1.

vrzhoumsft_2-1683709657905.png

 

Best Regards,
Rico Zhou

 

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

 

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

A relationship already exists, and it doesn't work.

The contents of the T-names table would be as follows:

Nerea
Pedro
Jaime
Silvia
Juan

And the name cell of the data table would look like this:

Juan,Silvia
Anonymous
Not applicable

Hi @Syndicate_Admin ,

 

I suggest you to Split Column in Power Query Editor.

My Sample:

vrzhoumsft_0-1683709030345.png

I add an index column and then split [NameT] column by comma,

vrzhoumsft_1-1683709067145.png

I suggest you to remove or inactive the relationship between two tables.

Filter Measure =
VAR _SELECTVALUE =
    VALUES ( 'Table'[NameT] )
VAR _Counttable1 =
    COUNTROWS ( _SELECTVALUE )
VAR _Counttable2 =
    CALCULATE (
        COUNTROWS ( 'Table (2)' ),
        FILTER ( 'Table (2)', [NameT] IN _SELECTVALUE )
    )
RETURN
    IF ( _Counttable1 = _Counttable2, 1, 0 )

Add this measure into visual level filter and set it to show items when value =1.

vrzhoumsft_2-1683709657905.png

 

Best Regards,
Rico Zhou

 

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

 

Alex_Serebr
Frequent Visitor

It should work if you create relationship between tables (namesT and data)

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.