Cargar datos de Dos Formularios en un fila en excel.
Es correcta la aclaración de mi anterior pregunta, cambie el formato e inclusive en los datos de los formularios se cargarían en una tabla
Formulario1
Funciona excelente!
Formulario2
Private Sub CommandButton1_Click()
'Botón para insertar
Set h1 = Sheets("sheet1")
'
'Validación de datos
If TextBox3 = "" Then
MsgBox "No contiene texto", vbExclamation, "Material"
Exit Sub
End If
'Fila siguiente
U = h1.Range("A" & Rows.Count).End(xlUp).Row + 1
'
'Se insertan los datos del form1
h1.Cells(U, 1) = UserForm1.TextBox1
h1.Cells(U, 2) = UserForm1.ComboBox1
h1.Cells(U, 3) = UserForm1.ComboBox2
h1.Cells(U, 4) = UserForm1.ComboBox3
h1.Cells(U, 5) = UserForm1.ComboBox5
h1.Cells(U, 6) = UserForm1.TextBox2
'Se insertan los datos del form2
h1.Cells(U, 7) = TextBox3
h1.Cells(U, 8) = ComboBox6
h1.Cells(U, 9) = TextBox4
h1.Cells(U, 10) = ComboBox7
Espero haber sido más claro en esta consulta