more like http://webscraper.io
or https://chrome.google.com/webstore/d...kfioidjg?hl=en
Whilst these are primarily about data capture, at least some allow database driven data entry.
but....
going back to your original question, you can open IE, and get data from one cell.
can you place it in the IE form?
you will need something like (i'm paraphrasing the code)
" Do while myRow has data
var1 = mySheet.range(name)
var2 = mySheet.range(gender)
var3 = mySheet.range(age)
ie.page.object(field1) = var1
ie.page.object(field2) = var2
ie.page.object(field3) = var3
ie.page.object(the submit button) = true
next myRow"
This should give you the looping structure, and read the data from excel (you will still need to translate this into actual VBA code)
unfortunately, I don't know the names of the relevant IE page objects, so you will still need to research this