Using VBA, is it possible to read a specific child node? For example, I only want to read the second child node and all I know about the node is that it's the second node in my node list. In this example, I'd want to read Info B only:
<Example>
- <Child>
<Data>Data A</Data>
<Info>Info A</Info>
</Child>
- <Child>
<Data>Data B</Data>
<Info>Info B</Info>
</Child>
</Example>
Thank you
<Example>
- <Child>
<Data>Data A</Data>
<Info>Info A</Info>
</Child>
- <Child>
<Data>Data B</Data>
<Info>Info B</Info>
</Child>
</Example>
Thank you
Comment