Ok. Cool I have everything working EXCEPT I can't stop the loop
Here is my code
#include <Excel.au3>
#include <File.au3>
#include <IE.au3>
Local $sFilePath = "C:UsersDocumentstest.xlsx"
_ExcelBookOpen($sFilePath)
$oExcel = _ExcelBookAttach($sFilePath)
For $i=1 to 7
$a = _ExcelReadCell($oExcel, $i, 1)
For $j=1 to 7
$b = _ExcelReadCell($oExcel, $j, 2)
For $k=1 to 7
$c = _ExcelReadCell($oExcel, $k, 4)
For $l=1 to 7
$d = _ExcelReadCell($oExcel, $l, 3)
For $m=1 to 7
$e = _ExcelReadCell($oExcel, $m, 5)
If $a="" Then ExitLoop
$sURL = "http://www.example.com/forms"
Local $oIE = _IECreate ($sURL)
Local $oForm = _IEFormGetObjByName($oIE, "product_form")
Local $oSelectBox1 = _IEGetObjByID($oForm, "id_box1")
_IEFormElementSetValue($oSelectBox1, $a)
Local $oSelectBox2 = _IEGetObjByID($oForm, "id_box2")
_IEFormElementSetValue($oSelectBox1, $b)
Local $oSelectBox3 = _IEGetObjByID($oForm, "id_box3")
_IEFormElementSetValue($oSelectBox1, $c)
Local $oSelectBox4 = _IEGetObjByID($oForm, "id_box4")
_IEFormElementSetValue($oSelectBox1, $d)
Local $oSelectBox5 = _IEGetObjByID($oForm, "id_box5")
_IEFormElementSetValue($oSelectBox1, $e)
Next
Next
Next
Next
Next
Need help stopping the loop after creating the 7 window ... right now it's looping back to 1 >_>