Suma cantidad si existe articulo en listbox
Estoy haciendo un sistema de inventario en excel en el cual desde unos textbox se van agregando articulos a un listbox y muchas veces se me repiten estos.
Como hago para que si existe un articulo agregado en listbox solo se le sume la cantidad de nuego ingreso que pongo en el textbox elegido para cantidad.
Gracias adelantada
Este es el código del botón para pasar al listbox
'Botón para pasar al listbox
If TextBox3 = "" Or TextBox3 = 0 Then
MsgBox ("Debe ingresar una cantidad para poder continuar")
TextBox3 = ""
TextBox3.SetFocus
Exit Sub
ElseIf TextBox4 = "" Or TextBox4 = 0 Then
MsgBox ("articulo no disponible para venta")
TextBox1 = ""
TextBox2 = ""
TextBox3 = ""
TextBox4 = ""
TextBox5 = ""
Exit Sub
Else
With ListBox2
.ColumnCount = 5
.ColumnWidths = "50 pt;220 pt;30 pt;50 pt;50 pt"
.AddItem TextBox1
.List(ListBox2.ListCount - 1, 1) = TextBox2
.List(ListBox2.ListCount - 1, 2) = TextBox3
.List(ListBox2.ListCount - 1, 3) = Format(TextBox4, "###,##0.00")
.List(ListBox2.ListCount - 1, 4) = Format(TextBox3 * TextBox4, "###,##0.00")
End With
CommandButton2.Enabled = True
CommandButton3.Enabled = True
End If
TextBox1 = ""
TextBox2 = ""
TextBox3 = ""
TextBox4 = ""