Like I mentioned I have been able to get through the Site Login screen with the help of the code from JP . but I am still searching for a way to pull a value from the excel sheet and look it up on the website automatically.
Works good upto here, but cant get the code to work below
' click a button on the next page
Sub try()
Set ElementCol = appIE.document.getElementsByTagName("INPUT")
' loop through all 'input' elements and find the one with a specific value
For Each btnInput In ElementCol
If btnInput.Value = "" Then
btnInput.Click
Exit For
End If
Next btnInput
' loop until the page finishes loading
Do While appIE.Busy
Loop
' click a text link on the page after that
Set ElementCol = appIE.document.getElementsByTagName("a")
'For Each Link In ElementCol
'If Link.innerHTML = <strong>Clickable Text Link Name</strong>" Then
'Link.Click
' Exit For
' End If
'Next Link
' loop until the page finishes loading
Do While appIE.Busy
Loop
'Do Events
' grab some text from the body
strCountBody = appIE.document.body.innerText
lStartPos = InStr(1, strCountBody, "Text to find")
lEndPos = lStartPos + 12
'TextIWant = Mid$(strCountBody, lStartPos, lEndPos - lStartPos)
' grab the whole screen &amp;amp;amp; paste into Excel
'appIE.ExecWB OLECMDID_SELECTALL, OLECMDEXECOPT_DONTPROMPTUSER
'appIE.ExecWB OLECMDID_COPY, OLECMDEXECOPT_DODEFAULT
'Workbooks.Add
'ActiveSheet.Paste
Application.ScreenUpdating = True
appIE.Quit
End Sub
Bookmarks