Crear un formulario para ingresar datos en 2hojas a la vez:
Hola amigos alguien me puede ayudar, necesito enviar a 2 hojas distintas los datos. Pero que me archive en "DIRECTORIO" y unicamente las ubique en "HOJA2" , soy nuevo por aca
les agradezco mucho por su atención.
eje.
Private Sub cmdInsertar_Click()
If Me.txtApellidoNombre.Text = "" Then MsgBox ("Numero de nota no puede estar vacío"): Exit Sub
If Me.txtTelefono.Text = "" Then MsgBox ("Producto no puede estar vacío"): Exit Sub
If Me.txtDireccion.Text = "" Then MsgBox ("Precio no puede estar vacío"): Exit Sub
If Sheets("DIRECTORIO").Range("A2").Value = "" Then
Sheets("DIRECTORIO").Range("A2").Value = Me.txtApellidoNombre.Text
Sheets("DIRECTORIO").Range("B2").Value = Me.txtTelefono.Text
Sheets("DIRECTORIO").Range("C2").Value = Me.txtDireccion.Text
Else
Sheets("DIRECTORIO").Range("A1").End(xlDown)(xlDropDown).Value = Me.txtApellidoNombre.Text
Sheets("DIRECTORIO").Range("A1").End(xlDown).Next.Value = Me.txtTelefono.Text
Sheets("DIRECTORIO").Range("A1").End(xlDown).Next.Next.Value = Me.txtDireccion.Text
Me.txtApellidoNombre.Text = ""
Me.txtTelefono.Text = ""
Me.txtDireccion.Text = ""
Me.txtApellidoNombre.SetFocus
End If
End Sub