I am looking to fill some online form at the work. Currently i have this code but my question is how do i get the Data from the table to the web form.
Sub ninja()
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate "https://www.google.com/"
While ie.Busy
DoEvents
Wend
' ESte Codigo abajo sirve para escribir en los blanco
ie.Document.getElementById("txtUserId").Value = Form![Alien]<---- Here
End Sub