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!