- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I do have in Exel only one column with few Client names, and i have this rule. Guys i need you help to help me understand why this warning is up and after continue rule is working correct. What i need to fix? Thanks
myXLSX = "C:\Customer.xlsx"
GoExcel.Open(myXLSX)
ForrowNumber = 2 To 1000
If (GoExcel.CellValue("A"&rowNumber) = (""))Then
lastUsedRow = rowNumber- 1
EndIf
Next
'set the list to be read from the XLS file
DimmyArrayListAsNewArrayList
i = 2
'add the values from the Excel file to an array list
DoUntili = lastUsedRow+1
myArrayList.add(GoExcel.CellValue("A"&i))
i = i+ 1
Loop
'present the list to the user
myCust1 = InputListBox("Select Customer from list", myArrayList,myArrayList.Item(0), "iLogic", "Customer")
'set the iProperty
iProperties.Value("Summary", "Company") = myCust1
Solved! Go to Solution.