Guardar datos de Form en una hoja determinada
Tengo el siguiente código, que si bien guarda los datos, lo hace solamente cuando la hoja "REGISTRO" esta activa, o seleccionada.
¿Es posible que realice la misma función sin necesidad de que la hoja se encuentre activa?
Public Sub btn_guardar_Click()
Sheets("REGISTRO").Cells(2, 1).Select
Selection.EntireRow.Insert
Sheets("REGISTRO").Cells(2, 1) = txtbox_pos
Sheets("REGISTRO").Cells(2, 2) = CDate(lbl_Fecha.Caption)
Sheets("REGISTRO").Cells(2, 3) = "IM" + txtbox_IM
Sheets("REGISTRO").Cells(2, 15) = txtbox_detalle
Sheets("REGISTRO").Cells(2, 4) = combo_Entrantes
Sheets("REGISTRO").Cells(2, 5) = txtbox_serieEntrante
Sheets("REGISTRO").Cells(2, 6) = combo_Salientes
Sheets("REGISTRO").Cells(2, 7) = txtbox_serieSaliente
Sheets("REGISTRO").Cells(2, 8) = combo_sim1Entrante
Sheets("REGISTRO").Cells(2, 9) = txtbox_serieSimEntrante
Sheets("REGISTRO").Cells(2, 10) = combo_sim1Saliente
Sheets("REGISTRO").Cells(2, 11) = txtbox_serieSim1Saliente
Sheets("REGISTRO").Cells(2, 12) = combo_sim2Entrante
Sheets("REGISTRO").Cells(2, 13) = txtbox_serieSim2Entrante
Sheets("REGISTRO").Cells(2, 14) = combo_sim2Saliente
Sheets("REGISTRO").Cells(2, 15) = txtbox_serieSim2Saliente
mandar_Correo
txtbox_pos.SetFocus
End Sub