I'm searching for an XPath string (for VBA Excel) that can look for all nodes on a specific level and that are only returned in case they have a specific (grand) child node. Regardless how 'deep' this is nested. Relationale: I don't know how deep a specific child is nested therefore I can't make a fixed path.
In case of the example below. I'm searching for all nodes that are directly under the root '' and which have any child that contain the name 'Test' but this child may not contain function '10'. However function '10' can be available on higher levels
XML STRING:
<Program>
<AA name="1" function="01"/>
<BB name="2" function="10">
<CC name="Test" function="01"/>
</BB>
<DD name="Test" function="05"/>
<EE name="3" function="01">
<FF name="4" function="05">
<GG name="Test" function="10"/>
</FF>
</EE>
</Program>
REQUIRED SELECTION:
Item(0) = <BB name="2" function="10">
Item(1) = <DD name="Test" function="05">
The following XPath expression gives the nodes under Program which contain the name 'Test'
xmlDoc.selectNodes("/Program/*[.//@name='Test']")
How can I filter the child based on 'function'