Forum Discussion
maarten_74
7 years agoFrequent Visitor
Add custom column from parent value
Hi there, I've got a table that contains projects and has a parent child hiëarchy and i would like to show the parent's status on every child row. My table looks like this: LineNr ParentL...
- 7 years ago
As a calculated column withe DAX you can use
Calculated Column = Lookupvalue(Table1[Status],Table1[LineNr],[ParentLineNr])
Zubair_Muhammad
7 years agoCommunity Champion
As a calculated column withe DAX you can use
Calculated Column = Lookupvalue(Table1[Status],Table1[LineNr],[ParentLineNr])