How can I import XML with only specific tag to Access database?

Mesmereyesed

New Member
I have a XML file like this:\[code\]<Example> <A> <a1>1</a1> <a2>2</a2> </A> <B> <b1>1</b1> <b2>2</b2> <b3>3</b3> </B> <B> . . . </B></Example>\[/code\]When I use \[code\]Application.ImportXML Me.XMLpath, acStructureAndData\[/code\], 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!
 
Back
Top