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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
enBRNanda
Regular Visitor

Help - Want to determinate the film who are the same in two differents tables

Hello devs,

 

In my two top 100 below :

enBRNanda_0-1649968233600.png

 

If the name is in the two tables (Netflix and IMDB in the column PrimaryTitle), please put it in a new tables (Film who are in the two top 100). I don't want to use Power Query but as a beginner, i don't know if it's possible to do it with DAX or with the different Rapport (as a merge tables charts or idk).

 

Please help me to do it !

 

Thank you in advance for your help,

 

EnBRNanda.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @enBRNanda ,

You can create a calculated table as below to get it, please find the details in the attachment.

Table = 
UNION (
    SELECTCOLUMNS (
        FILTER ( 'Table1', 'Table1'[Personnalise] IN { "NETFLIX", "IMDB" } ),
        "primaryTitle", 'Table1'[primaryTitle]
    ),
    SELECTCOLUMNS (
        FILTER ( 'Table2', 'Table2'[Personnalise] IN { "NETFLIX", "IMDB" } ),
        "primaryTitle", 'Table2'[primaryTitle]
    )
)

yingyinr_0-1650347920313.png

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @enBRNanda ,

You can create a calculated table as below to get it, please find the details in the attachment.

Table = 
UNION (
    SELECTCOLUMNS (
        FILTER ( 'Table1', 'Table1'[Personnalise] IN { "NETFLIX", "IMDB" } ),
        "primaryTitle", 'Table1'[primaryTitle]
    ),
    SELECTCOLUMNS (
        FILTER ( 'Table2', 'Table2'[Personnalise] IN { "NETFLIX", "IMDB" } ),
        "primaryTitle", 'Table2'[primaryTitle]
    )
)

yingyinr_0-1650347920313.png

Best Regards

Whitewater100
Solution Sage
Solution Sage

Hi:

Here is a couple of workarounds on the attached file. I hope this helps..

https://drive.google.com/file/d/1lHhLDuUPKMDPgtGfBHsq_PnucshUSLRn/view?usp=sharing 

 

The Match Table and Match table are the ones to look at. INTERSECT would usually work but our column names are a bit different, so it did not.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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