Forum Discussion
dgilm33
Helper I
4 years agoUNICHAR 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...
- Anonymous4 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 ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
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.