I have a XML file like this:
<Example>
<A>
<a1>1</a1>
<a2>2</a2>
</A>
<B>
<b1>1</b1>
<b2>2</b2>
<b3>3</b3>
</B>
<B>
.
.
.
</B>
</Example>
When I use Application.ImportXML Me.XMLpath, acStructureAndData, it will import both table A and B. So how could I just import table B without A? (A could be 10+ different tables). Thanks for your kindly help!
MSXML DOMDocumentand use its methods to extract only the values you want, then store them in your table. You can find some tips for that approach at this SO answer: stackoverflow.com/a/3398999/77335 – HansUp Dec 4 '12 at 21:48