Forum Discussion
smpa01
Community Champion
3 years agoPath reverse lookup
Is there any way to achieve a reverse look up that returns the memeber position on the path?
I have this
| rowNum | pathString | individiualValue |
|--------|------------------|---...
- 3 years ago
Try this as a calculated column:
position = MINX ( FILTER ( GENERATESERIES ( 1, PATHLENGTH ( [pathString] ) ), PATHITEM ( [pathString], [Value] ) = [individualValue] ), [Value] )