Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Matching records and filter the data

Hi ,   I have two tables as shown below .   TableA:   number        Name 1                       a,b 2                       b,c 3                       a 4                       a,c 5    ...
  • Icey's avatar
    6 years ago

    Hi Anonymous ,

     

    Try this:

    Name Measure =
    IF (
        SEARCH ( SELECTEDVALUE ( TableB[Name] ), MAX ( TableA[Name] ),, BLANK () )
            <> BLANK (),
        MAX ( TableA[Name] )
    )
    

     

     

    Best Regards,

    Icey

     

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