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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
andreazambon
Helper V
Helper V

Mark a value if it match between 2 tables

Hi there. 

 

I have 2 tables T1 and T2. They have different columns but some of them are in common. Values could be different but T2 surelly contains values that are in T1 too. T1 could have values that are missing in T2.

Take this example:

T1

CUSTOM ORDERPRODUCTION ORDER

ODV1

ODP1
ODV1ODP2
ODV2ODP3
ODV3ODP4

 

T2

CUSTOM ORDERPRODUCTION ORDER

ODV1

ODP1
ODV3ODP4

 

 

I need a view which contains all T1 values, but marks with green fill the values whic are also in T2, and the others in red.

 

So:

 

VIEW (here i mark the text for sample):

CUSTOM ORDERPRODUCTION ORDER

ODV1

ODP1
ODV1ODP2
ODV2ODP3
ODV3ODP4

 

The view that is near my goal is a pivot table.

 

With anti merge I create a table which contains all the value of T1 that are not included in T2.

 

Any suggestion?

Thankyou

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @andreazambon ,

Please try below steps:

1. create two measure with below dax formula

CO Color =
VAR co =
    SELECTEDVALUE ( T1[CUSTOMER ORDER] )
VAR tmp =
    VALUES ( T2[CUSTOMER ORDER] )
RETURN
    IF ( co IN tmp, "green", "red" )
PO Color =
VAR co =
    SELECTEDVALUE ( T1[PRODUCTION ORDER] )
VAR tmp =
    VALUES ( T2[PRODUCTION ORDER] )
RETURN
    IF ( co IN tmp, "green", "red" )

2. add a table visual with T1 fields, and configure the fields conditional format 

vbinbinyumsft_0-1686710416347.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
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
Anonymous
Not applicable

Hi @andreazambon ,

Please try below steps:

1. create two measure with below dax formula

CO Color =
VAR co =
    SELECTEDVALUE ( T1[CUSTOMER ORDER] )
VAR tmp =
    VALUES ( T2[CUSTOMER ORDER] )
RETURN
    IF ( co IN tmp, "green", "red" )
PO Color =
VAR co =
    SELECTEDVALUE ( T1[PRODUCTION ORDER] )
VAR tmp =
    VALUES ( T2[PRODUCTION ORDER] )
RETURN
    IF ( co IN tmp, "green", "red" )

2. add a table visual with T1 fields, and configure the fields conditional format 

vbinbinyumsft_0-1686710416347.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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