Forum Discussion

jimpatel's avatar
jimpatel
Post Patron
4 years ago
Solved

Compare if same number repeating in different table

Hi   I am really struggling with following logic. Any help will be appreciated.   I have 2 tables and i cant link those two tables for some reason. I am trying to look like something like Vlookup...
  • luohen's avatar
    luohen
    4 years ago

    Hi jimpatel ,

    You can create a calculated column as below in Table2 to get it:

     

    Column =
    CALCULATE (
        MAX ( 'Table1'[D] ),
        FILTER ( 'Table1', 'Table1'[A] = 'Table2'[C] )
    )

     

    If the above one can't help you get the desired result, please provide some sample data in Table1 and Table2 (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards