Forum Discussion
gduobaite
5 years agoHelper III
Retrieve values from another table
Hi all, I have two tables (Table & Table(2)) related through "z_score_rnd" column. I need to show "100" (number) value in "score %" colum for the scores, which are >=4 or <=-4 from Table(2). I...
- 5 years ago
Hi gduobaite ,
You can create this column:
Column = IF ( ( [z_score_rnd] >= 4 || [z_score_rnd] <= -4 ) && [z_score_rnd] IN DISTINCT ( 'Table (2)'[z_score_rnd] ), 100, [score %] )Attached the file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
gduobaite
5 years agoHelper III
I tried:
Column = IF('Table2'[z_score_rnd]>=4 || 'Table2'[z_score_rnd]<=-4, 100)If I would only know how to implement false value (false should be all remained % values from Table1, "score %")...
- v-yingjl5 years agoCommunity Support
Hi gduobaite ,
You can create this column:
Column = IF ( ( [z_score_rnd] >= 4 || [z_score_rnd] <= -4 ) && [z_score_rnd] IN DISTINCT ( 'Table (2)'[z_score_rnd] ), 100, [score %] )Attached the file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.