Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello:
I have an excel sheet with some data of bombs of which I want to filter by model I am trying to filter by models from ilogic and that I give them in an input box.
I do not know if it could be done with ilogic or you have to do it from excel with vb.net.
Attached image of the excel sheet
The field for which I want to filter would be "Family".
Thanks in advance
Dim filtro As New ArrayList For fila = 1 To 200 If (GoExcel.CellValue("A" & fila) = "") Then Dim Referencia As String = GoExcel.CellValue("A" & fila - 1) Dim Modelo As String = GoExcel.CellValue("B" & fila- 1) filtro.add(referencia & Modelo) End If Next MultiValue.List("ReferenciasBombas") = filtro myMatDescription = InputListBox("Select from the list", filtro, filtro.Item(0), "iLogic", "Available Materials")
Solved! Go to Solution.