Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Filtering the data in 1st table based on 2nd table

Hi Community,

There are two tables, 
The output from the 2nd table should be filtered based on 1st table values.

1st table :

CC1C2C3
SATU



2nd table:

CC1C2C3
AATU
BATU
CAST
DBBD
ECXV


Here, Columns C1, C2 and C3 from the 1st table need to be filtered in the 2nd table and output should be all the columns in the 2nd table.

Output:

CC1C2C3
AATU
BATU

 


Kindly help by through DAX.

Regards,
Vineetha.

  • So, I am thinking that you might want to create a key column in both tables that is essentially:

    Key Column = [C1] & [C2] & [C3]

    Create a relationship between the tables based on the key column. Then you should be good to go.

1 Reply

  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion
    So, I am thinking that you might want to create a key column in both tables that is essentially:

    Key Column = [C1] & [C2] & [C3]

    Create a relationship between the tables based on the key column. Then you should be good to go.