Reading a XML file in a website to write to a local EXCEL file

actjfc

Active Member
Joined
Jun 28, 2003
Messages
416
Excel friends,

I have the code below that works great in mi local desktop PC. How should I modify it to do exactly the same but the file users.xml should be located in a website as http://www.example.com/users.xml with userID=XYX and Password=123456:

Sub XMLtoExcel()

Dim xml_doc As New DOMDocument
Dim USERDOC As Boolean
Dim onode As IXMLDOMElement, RecordCounter
Dim Sht As Worksheet
USERDOC = xml_doc.Load("C:\users.xml")
Set Sht = ThisWorkbook.Worksheets("Sheet1")
RecordCounter = 2
If USERDOC Then
With Sht
For Each onode In xml_doc.SelectNodes("//Row")
.Cells(RecordCounter,1) = onode.getAttribute("a")
RecordCounter = RecordCounter + 1
Next
End With
Else
MsgBox "Cannot open XML File"
End If
End Sub

A reference to Microsoft XML 6 must be selected.

Any help is appreciated.

Thanks!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top