Mandar datos de dos listbox a una hoja de excel
Tengo el siguiente codigo necesito mandar los datos del listbox a la hoja 8 al mismo tiempo que mando la informacion del listbox 1, no consigo que lo hagan al mismo tiempo
Gracias de antemano
Private Sub btn_Procesar_Click()
Dim Fila As Integer
Dim Final As Integer
Dim Existencia As Integer
Dim altas As Integer
If Me.cbo_not.Text = Empty Or _
Me.txt_equipo.Text = Empty Or _
Me.txt_fecha.Text = Empty Or _
Me.txt_descrip.Text = Empty Then
End If
Fila = 2
Do While Hoja8.Cells(Fila, 1) <> ""
Fila = Fila + 1
Loop
Final = Fila
For i = 0 To Me.ListBox1.ListCount - 1
Hoja8.Cells(Final, 8) = Me.ListBox1.List(i, 0)
Hoja8.Cells(Final, 9) = Me.ListBox1.List(i, 1)
Hoja8.Cells(Final, 10) = Me.ListBox1.List(i, 2)
Hoja8.Cells(Final, 1) = Me.txt_fecha
Hoja8.Cells(Final, 2) = Me.cbo_not
Hoja8.Cells(Final, 3) = Me.txt_equipo
Hoja8.Cells(Final, 4) = Me.txt_descrip
Hoja8.Cells(Final, 5) = Me.eje1
Hoja8.Cells(Final, 6) = Me.eje2
Hoja8.Cells(Final, 7) = Me.eje3
' For J = 0 To Me.ListBox2.ListCount - 1
' Hoja8.Cells(Final, 11) = Me.ListBox2.List(i, 0)
' Hoja8.Cells(Final, 12) = Me.ListBox2.List(i, 1)
'Hoja8.Cells(Final, 13) = Me.ListBox2.List(i, 2)
Final = Final + 1
' ImprimirFactura
Next
End Sub