ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   web query+vba (https://www.excelbanter.com/excel-worksheet-functions/99286-web-query-vba.html)

Mahesh

web query+vba
 
Hi i am a beginner of EXcel and VBA coding. Iam trying to access a site which
takes input from the user and displays the data. I have written the following
code but not able to pull the required data into excel. Can anyone please
help me on this.
Private Sub CommandButton2_Click()
Dim ie As Object
Dim objBK As Workbook
Set objBK = Workbooks.Add
With objBK.Worksheets(1)
Set ie = CreateObject("InternetExplorer.Application")

On Error GoTo errHandler
With ie
.navigate "http://data.bls.gov/cgi-bin/srgate"
Do While .busy: DoEvents: Loop
Do While .ReadyState < 4: DoEvents: Loop
With .document.forms(0)
.series_id.Value = " ECU11121I"
.Submit

End With
End With

End With

errHandler:
ie.Quit: Set ie = Nothing

End Sub


All times are GMT +1. The time now is 10:26 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com