Looking to return staterate and localrate from xml response to cells A1 and A2 in active WS
I will modify later so that street address, city, and zip can be in three other cells in the sheet so the commandbutton1 can query for tax rate when clicked.
This is what I have so far:
Private Sub CommandButton1_Click()
Dim Req As New XMLHTTP60
Req.Open "Get", "http://dor.wa.gov/AddressRates.aspx?output=xml&addr=700%205th%20Ave&city=Seattle&zip=98104", False
Req.send
End Sub
I will modify later so that street address, city, and zip can be in three other cells in the sheet so the commandbutton1 can query for tax rate when clicked.
This is what I have so far:
Private Sub CommandButton1_Click()
Dim Req As New XMLHTTP60
Req.Open "Get", "http://dor.wa.gov/AddressRates.aspx?output=xml&addr=700%205th%20Ave&city=Seattle&zip=98104", False
Req.send
End Sub