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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Comparing 3 columns in 3 different tables

Hi,

 

I have 3 tables and each of them has a "Name" column titled Name1, Name2 and Name3, respectively. All three columns contain device numbers. 

 

I'm trying to find the device numbers that do not appear in all 3 columns, i.e. those that only appear in one or two of the columns. 

 

I can put the three columns in a table visual in which case I get something like this:

 

Name1Name2Name3
Device1Device1 
Device2  
Device3Device3Device3
Device4 Device4
  Device5
Device6Device6Device6
 Device7 
 Device8Device8
Device9Device9Device9
Device10  

 

I'd like to filter out the devices that appear in all 3 columns. 

 

Do you guys have any idea how to do this?

 

Thanks,

Ginny

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try this calculated table>>from the modelling tab>>New Table

 

Calc Table =
VAR DevicesInAllTables =
    INTERSECT (
        INTERSECT ( VALUES ( Table1[Name1] ), VALUES ( Table2[Name2] ) ),
        VALUES ( Table3[Name3] )
    )
RETURN
    EXCEPT (
        DISTINCT (
            UNION (
                VALUES ( Table1[Name1] ),
                VALUES ( Table2[Name2] ),
                VALUES ( Table3[Name3] )
            )
        ),
        DevicesInAllTables
    )

Regards
Zubair

Please try my custom visuals

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try this calculated table>>from the modelling tab>>New Table

 

Calc Table =
VAR DevicesInAllTables =
    INTERSECT (
        INTERSECT ( VALUES ( Table1[Name1] ), VALUES ( Table2[Name2] ) ),
        VALUES ( Table3[Name3] )
    )
RETURN
    EXCEPT (
        DISTINCT (
            UNION (
                VALUES ( Table1[Name1] ),
                VALUES ( Table2[Name2] ),
                VALUES ( Table3[Name3] )
            )
        ),
        DevicesInAllTables
    )

Regards
Zubair

Please try my custom visuals
Anonymous
Not applicable

Thank you so much, this worked perfectly.

 

I now have a list of all the device numbers that only appear in one or two of the columns. Is there a way to also show which columns are missing these device numbers? So using my pervious example, have something like:

 

Device #Missing from
Device1Name3
Device2Name2, Name3
Device4Name2
Device5Name1, Name2
Device7Name1, Name3
Device8Name1
Device10Name2, Name3

 

If you have any ideas if/how this could be possible, please let me know 🙂

 

Many thanks,

Ginny

@Anonymous 

 

you can use soemthing like this.

Please see attached file as well

 

 

Column =
VAR temp =
    {
        IF ( ISEMPTY ( FILTER ( Table1, Table1[Name1] = CalcTable[Name1] ) ), "Name1" ),
        IF ( ISEMPTY ( FILTER ( Table2, Table2[Name2] = CalcTable[Name1] ) ), "Name2" ),
        IF ( ISEMPTY ( FILTER ( Table3, Table3[Name3] = CalcTable[Name1] ) ), "Name3" )
    }
RETURN
    CONCATENATEX ( FILTER ( temp, [Value] <> BLANK () ), [Value], ",", [Value] )

calcu.png


Regards
Zubair

Please try my custom visuals
Anonymous
Not applicable

Amazing, you're a star. Thank you.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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