In XML, how to find parent when I know a child value?

I’m having trouble with something similar to multiple data children in JSON trees, when parsing xml.
How could I find the parent when I know a child value, in oder to retrieve a corresponding sibling value

You could use Find Subtrees with XPath. XPath is a powerful language for looking up information from a tree. Here’s a composition based on this example.

FindSibling.vuo (1.53 KB)

1 Like

thanks Jaymie!!