how to consume webservice xml in Excel 2000?

  • Thread starter Thread starter ljb
  • Start date Start date
L

ljb

I currently have Excel 2000 VBA that loads and parses static XML from a
file. How would I convert this to consume the same XML from a webservice? Is
there a replacement for xmldoc.Load(filepath) that will trigger the
webservice?

If xmldoc.Load(filepath) Then
If Not xmldoc.documentElement.selectSingleNode("//INFO") Is Nothing
Then
.......


thanks
LJB
 
Back
Top