Forum Discussion
aherabit
Helper I
2 years agolookup same table for referenced field values
Hi Folks, I have a problem with looking the same table and capturing its values for referenced field values. Here is my data table: data table issue id abstract related_issue_id x-123 ...
- 2 years ago
Try the following DAX:
abstract related issue = CALCULATE(MIN('Table'[abstract]), ALL('Table'), TREATAS(VALUES('Table'[related_issue_id]), 'Table'[issue id]))