I am trying to get data from excel spreadsheet and past it into a form on internet explorer, and send it.

To reset the form for each iteration I use aloop of ten Tab sends:

Application.SendKeys “{Tab}”, True
Application.Wait Now+TimeValue(“0:00:01”)
DoEvents


It’s not elegant and without the delay it gets out of sync.
I’m not a VBA programmer.
I’d like to be able to direct the cursor to the top Field on the webpage, not tab through the page

Is there a way to set the cursor in IE to its first input field programmatically from excel ?