Forum Discussion

dgilm33's avatar
dgilm33
Icon for Helper I rankHelper I
4 years ago
Solved

UNICHAR showing incorrectly

I have two tables (let's say table A and B). I'm joining on a 1 to many relationship (many being table B and 1 being table A). I'm joining on a unique identifier in both. Table A has unique numbers t...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi dgilm33 ,

     

    I suggest you to try this measure.

    UNICHAR = 
    VAR _CATEGORY_B =
        VALUES ( 'Table B'[Category] )
    RETURN
        IF ( MAX ( 'Table A'[Category] ) IN _CATEGORY_B, UNICHAR ( 10004 ), BLANK () )

    My Sample:

    Result is as below.

     

    Best Regards,
    Rico Zhou

     

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