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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Iceberg12
Frequent Visitor

Need help to check the missing data in 02 different Columns.

Hello everyone, 

I need your help on the following query: 

I have table A:

Number
1
2
3
4
5


and table B 

1
2


and C:

4
5


I would like to have a new column in Table A like this

Number

Found on B&C

1

True

2True
3False
4True
5True


I am trying to use Contain, but it only works with 02 Columns, maybe I should have another approach.
Appreciate your help on this.
Thanks,



1 ACCEPTED SOLUTION
audreygerred
Super User
Super User

Hello! I have entered the following for A:

audreygerred_0-1707326985550.png

The following for B:

audreygerred_1-1707327010729.png

The following for C:

audreygerred_2-1707327033333.png

If you want to show whether a value from A is found in B OR in C, use below:

found_in_b_or_c = IF(
    COUNTROWS(
        INTERSECT(
            VALUES('Table A'[Column1]),
            UNION(VALUES('Table B'[Column1]), VALUES('Table C'[Column1]))
        )
    ) > 0,
    TRUE,
    FALSE
)
 
If you want to show if a value from A is found in B AND C, use the below:
found_in_b_and_c =
IF(
    COUNTROWS(
        INTERSECT(
            VALUES('Table A'[Column1]),
            INTERSECT(VALUES('Table B'[Column1]), VALUES('Table C'[Column1]))
        )
    ) = COUNTROWS(VALUES('Table A'[Column1])),
    TRUE,
    FALSE
)
 
Here are the results:
audreygerred_3-1707327123990.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
Iceberg12
Frequent Visitor

Thank you for your suggest solution, but does that also work if Column B doesn't have the same row as Column C?

You're welcome. Yes, one of the DAX I provided will let you know if the same value is in b or c and the other is only if it's b and c.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





audreygerred
Super User
Super User

Hello! I have entered the following for A:

audreygerred_0-1707326985550.png

The following for B:

audreygerred_1-1707327010729.png

The following for C:

audreygerred_2-1707327033333.png

If you want to show whether a value from A is found in B OR in C, use below:

found_in_b_or_c = IF(
    COUNTROWS(
        INTERSECT(
            VALUES('Table A'[Column1]),
            UNION(VALUES('Table B'[Column1]), VALUES('Table C'[Column1]))
        )
    ) > 0,
    TRUE,
    FALSE
)
 
If you want to show if a value from A is found in B AND C, use the below:
found_in_b_and_c =
IF(
    COUNTROWS(
        INTERSECT(
            VALUES('Table A'[Column1]),
            INTERSECT(VALUES('Table B'[Column1]), VALUES('Table C'[Column1]))
        )
    ) = COUNTROWS(VALUES('Table A'[Column1])),
    TRUE,
    FALSE
)
 
Here are the results:
audreygerred_3-1707327123990.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.