Forum Discussion
silverdale9999
Helper I
4 years agoCross Referencing multiple linked values
First of all - struggling to come up with a useful title for this one so apologies in advance. If anyone is struggling for ideas for fun on Saturday, might I suggest you consider this small probl...
- 4 years ago
Hi, silverdale9999 ;
You could create a measure,
Measure = var _contain=SUMMARIZE(FILTER(ALL('Table'),[Child] in ALLSELECTED(Master[List]) || [Parent] in ALLSELECTED(Master[List])),[Parent]) return IF(MAX('Table'[Parent]) in _contain,"Yes","No")Or a column
Column = var _contain=SUMMARIZE(FILTER(ALL('Table'),[Child] in ALLSELECTED(Master[List]) || [Parent] in ALLSELECTED(Master[List])),[Parent]) return IF([Parent] in _contain,"Yes","No")The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
4 years agoHi, silverdale9999 ;
You could create a measure,
Measure =
var _contain=SUMMARIZE(FILTER(ALL('Table'),[Child] in ALLSELECTED(Master[List]) || [Parent] in ALLSELECTED(Master[List])),[Parent])
return IF(MAX('Table'[Parent]) in _contain,"Yes","No")
Or a column
Column =
var _contain=SUMMARIZE(FILTER(ALL('Table'),[Child] in ALLSELECTED(Master[List]) || [Parent] in ALLSELECTED(Master[List])),[Parent])
return IF([Parent] in _contain,"Yes","No")
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.