Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Lookup value from one row and return value from a different row

Hello Everyone,   This is my first post so apologies if I am posting this in the wrong place. I am also very new to PowerBI so I will try to explain this to the best of my ability ðŸ™‚   Currently ...
  • v-yanjiang-msft's avatar
    3 years ago

    Hi Anonymous ,

    According to your description, here's my solution.

    Table1:

    Table2:

    Create a calculated column in Table1:

    Job Reference Check =
    LOOKUPVALUE (
        'Table2'[Title],
        'Table2'[Cascade Check], 'Table1'[ParentID Check]
    )
    

    Get the correct result.

    I attach my sample below for your reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.