cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
ColinCH
Regular Visitor

Compare 2 columns from 2 tables

Hello

 

I'm looking for a solution in DAX for a calculated column.

My problem is that I need to compare two columns of two tables with each other. Both tables have different inputs and only a few rows match each other.

 

For example: I have two tables A and B. Both have entries with dates and numbers.

I need to check the entries of both and print an output in the calculated column.

 

Table A:

 

DateNumber
12.01.20221111
12.01.20223333
23.02.20223333
23.02.20221111

 

Table B:

DateNumberCalculated column (Output)
23.02.20221111Found in table A
28.01.20221111Not found in table A
23.02.20222222

Not found in table A

12.01.20221111

Found in table A

 

 

How would I do this?

 

Thank you! Sincerely

1 ACCEPTED SOLUTION
mangaus1111
Solution Sage
Solution Sage

Hi @ColinCH ,

you can try this

mangaus1111_0-1669725429056.png

Column = 
IF(
    ISBLANK(
            LOOKUPVALUE('Table A'[Number],
                        'Table A'[Date],'Table B'[Date],
                        'Table A'[Number],'Table B'[Number]
                       )
           ),
"Not found in table A",
"Found in table A"
)

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

1 REPLY 1
mangaus1111
Solution Sage
Solution Sage

Hi @ColinCH ,

you can try this

mangaus1111_0-1669725429056.png

Column = 
IF(
    ISBLANK(
            LOOKUPVALUE('Table A'[Number],
                        'Table A'[Date],'Table B'[Date],
                        'Table A'[Number],'Table B'[Number]
                       )
           ),
"Not found in table A",
"Found in table A"
)

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

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors