I am trying to search for the right method to submit HTML form with the data from excel cell and retrieve part of the result back.
HTML form URL is http://www2.stat.gov.lt:8777/imones/sektor.html:
<form action="sektor.chk_sekt" method="POST">
<br>
<b>Ūkio subjekto kodas: </b>
<input type="text" name="imone01" size="9" maxlength="9">
<br>
<br>
<input type="submit" value=" OK ">
</form>
Example data strings to submit are 303305024, 300983557, the value to be extracted from the response on the page http://www2.stat.gov.lt:8777/imones/sektor.chk_sekt is the line:
<BR>
<B>Veiklos rūšis pagal EVRK red. 2: </B>
479100 - Užsakomasis pardavimas paštu arba internetu
<BR>
The values from each cell in column A should be submitted within loop, and the retrieved results should be filled into corresponding cells in column B.
I have reviewed several similar questions but they seem to be using some different format of form and doesn't suit in this case.
