Te mando las soluciones cada una de ellas asociadas a un botón
Para borrar una línea seleccionada del listbox2:
Private Sub CommandButton2_Click()
For m = 0 To ListBox2.ListCount - 1
If ListBox2.Selected(m) = True Then
ListBox2.RemoveItem m
End If
Next
End Sub
Para sumar una columna del listbox2 (en mi caso la 2)
Private Sub CommandButton3_Click()
For t = 0 To ListBox2.ListCount - 1
suma = suma + CDbl(ListBox2.List(t, 1))
Next
MsgBox "la suma de la columna 2 es de: " & suma
End Sub
Para crear un informe de todas las líneas del listbox2 en la hoja presupuesto
Private Sub CommandButton4_Click()
fila = 1
For r = 0 To ListBox2.ListCount - 1
Sheets("presupuesto"). Cells(fila, 1).Value = ListBox2.List(r, 0)
Sheets("presupuesto"). Cells(fila, 2).Value = ListBox2.List(r, 1)
Sheets("presupuesto"). Cells(fila, 3).Value = ListBox2.List(r, 2)
Sheets("presupuesto"). Cells(fila, 4).Value = ListBox2.List(r, 3)
Sheets("presupuesto"). Cells(fila, 5).Value = ListBox2.List(r, 4)
fila = fila + 1
Next
End Sub
recuerda finalizar y puntuar