Como puedo agregar items a 2 listbox VBA EXCEL
Tengo un formulario en el cual agrego 6 columnas de datos a un listbox1, pero a hora tengo la necesidad de agregar la columnas 5 y 6 en el listbox2, hago el mismo procedimiento que hice para agregar los datos al listbox1 solo cambiando el dato listbox1 por listbox2 pero me marca el siguiente error.
Este es el código que utilizo para agregar los items al Listbox1.
'Agrega los items al listbox With UserForm1 .ListBox1.AddItem Val(UserForm1.ComboBox1.Text) .ListBox1.List(i, 0) = Space(10 - 2 * Len(.ListBox1.List(i, 0))) & .ListBox1.List(i, 0) .ListBox1.List(i, 1) = UserForm1.ComboBox2.Text If UserForm1.OptionButton1 = True Then .ListBox1.List(i, 2) = "5" '.ListBox1.List(i, 2) = Space(10 - 2 * Len(.ListBox1.List(i, 2))) & .ListBox1.List(i, 2) End If Total2 = Mid(Me.ListBox1.List(i, 2), 1, 2) * Me.ListBox1.List(i, 0) .ListBox1.List(i, 3) = Total2 '.ListBox1.List(i, 3) = Space(10 - 2 * Len(.ListBox1.List(i, 3))) & .ListBox1.List(i, 3) .ListBox1.List(i, 4) = "$ " & UserForm1.ComboBox3.Text .ListBox1.List(i, 5) = UserForm1.ComboBox4.Text i = i + 1 End With
Alguna solucion
2 Respuestas
Respuesta de Dante Amor
2
Respuesta de Abraham Valencia
1