Forum Discussion
IvanS
Helper V
4 years agoLOOKUP within the same table
Hey guys, I browsed several sources about how to lookup value within the same table, however any of those met my requirements. I have one huge agile table that consists of stories (sub-tasks)...
- 4 years ago
I see, for a measure MAX() or SELECTEDVALUE() should solve the issue:
smpa01
Community Champion
4 years agoIvanS you can use this measure
Measure =
VAR _epicName =
MAX ( 'Table 1'[Epic Link] )
RETURN
CALCULATE (
MAX ( 'Table 1'[Epic Name] ),
FILTER ( ALL ( 'Table 1' ), 'Table 1'[Issue_Unique Key] = _epicName )
)
- IvanS4 years ago
Helper V
Hi smpa01
for some reason, the function is not working in measure. Please find below - the names in official file are a bit different. You can see that calculated column is getting the Epic name however measure is blank (except one line from the list).
- IvanS4 years ago
Helper V
I found the root cause of the issue - there was bilateral relationship between 2 tables which are part of matrix table. After change to sigle filterring, the both measures are working.
I will mark measure from ValtteriN as solution as it is not that much performance consuming. However thank you too for help!