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
Sime
Helper I
Helper I

Table Value Comparison

Hi All,

 

I would like to compare the values of a column (same data) from 2 different tables and flag the unique values in a conditional column in the dataset so they can be filtered out.

 

Basically this is an example of what I am looking to do.

 

Table1.ColumnProject

12345

12346

12347

12348

 

Table2.ColumnProject

12345

12346

12347

12348

12349

12350

 

So the unique values in Table 2 (12349 & 12350) would be flagged as "New Projects" in a conditional column, and the reset would be "Existing Projects"

 

Can this be easily done?

 

Thanks.

 

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

Hi @Sime ,

 

You can create a custom column in table 2 with below code:-

column =
VAR result =
    CALCULATE (
        FIRSTNONBLANK ( '__Table 1'[ColumnProject], 1 ),
        FILTER (
            ALL ( '__Table 1' ),
            '__Table 1'[ColumnProject] = '__Table 2'[ColumnProject]
        )
    )
RETURN
    IF ( ISBLANK ( result ), "Existing Project", "new project" )

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

4 REPLIES 4
Samarth_18
Community Champion
Community Champion

Hi @Sime ,

 

You can create a custom column in table 2 with below code:-

column =
VAR result =
    CALCULATE (
        FIRSTNONBLANK ( '__Table 1'[ColumnProject], 1 ),
        FILTER (
            ALL ( '__Table 1' ),
            '__Table 1'[ColumnProject] = '__Table 2'[ColumnProject]
        )
    )
RETURN
    IF ( ISBLANK ( result ), "Existing Project", "new project" )

 

Thanks,

Samarth

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Thank you very much for your assistance @Samarth_18 .  This worked as anticipated. 

freginier
Solution Specialist
Solution Specialist

Hi @freginier,

 

Thank you for your response.  I am unable to get the solution you have posted above to work in my scenario as the 3rd argument appears to not accept the second table and [column] when creating the measure.

 

Sime_0-1642705391229.png

 

Any ideas where I am going wrong?

 

Ideally if I could perform this cross table comparison in the data set and add a calulated column that would be ideal.

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.