Forum Discussion
smpa01
3 years agoCommunity Champion
Path 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] )
AlexisOlson
3 years agoSuper User
Try this as a calculated column:
position =
MINX (
FILTER (
GENERATESERIES ( 1, PATHLENGTH ( [pathString] ) ),
PATHITEM ( [pathString], [Value] ) = [individualValue]
),
[Value]
)- smpa013 years agoCommunity Champion
👍