lets say your URL list in column A starting in A2
try
Sub Browsetosite()
Dim IE As New SHDocVw.InternetExplorer
Dim HTMLDoc As MSHTML.HTMLDocument
Dim HTMLInput As MSHTML.IHTMLElement
Dim HTMLTrs As MSHTML.IHTMLElementCollection
Dim HTMLTr As MSHTML.IHTMLElement
Dim rows As Long
Dim x As Integer
NumRows = Range("A2", Range("A2").End(xldown)).Rows.Count
Range("A2").Select
For x = 1 To NumRows
IE.Visible = True
IE.Navigate Activecell.Value, False
Do While IE.ReadyState <> READYSTATE_COMPLETE
Loop
Set HTMLDoc = IE.Document
Set HTMLTrs = HTMLDoc.getElementsByTagName("td")
For Each HTMLTr In HTMLTrs
' Debug.Print HTMLTr.getAttribute("id"), ",", HTMLTr.innerText, HTMLTr.innerHTML
'code below find eb number title and code and assigns it to row E1, F1 and G1
If HTMLTr.getAttribute("id") = "ctl00_bodyContents_td_displayPageContainer_props_prefix_0" Then
Range("E1").Value = (HTMLTr.innerText)
End If
If HTMLTr.getAttribute("id") = "ctl00_bodyContents_td_displayPageContainer_props_title_0" Then
Range("F1").Value = (HTMLTr.innerText)
End If
If HTMLTr.getAttribute("id") = "ctl00_bodyContents_td_displayPageContainer_props_Review_and_Acceptance_Status_2" Then
Range("G1").Value = (HTMLTr.innerText)
End If
'Debug.Print HTMLTr.innerText
Next HTMLTr
ActiveCell.Offset(1, 0).Select
Next
End Sub
Bookmarks