I hope someone can help me. I am endeavoring to output a number of SAS datasets to XML using the following example libname statements
libname xml1 xml "f:\xml\myxml\xml1.xml";
libname xml2 xml "f:\xml\myxml\xml2.xml";
and so on ....
libname xml9 xml "f:\xml\myxml\xml9.xml";
I then attempt to read the XML documents created into EXCEL 2007. My problem relates to the xml data all having the outer container being called
How do I get around this problem ?
David