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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
v-binbinyu-msft
Community Support
Community Support

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
v-binbinyu-msft
Community Support
Community Support

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.