Te anexo la primera parte para registrar un cliente en la hoja según el centro
Private Sub CommandButton1_Click()
'Por.Dante Amor
If tb_centro = "" Then cad = "Centro. "
If tb_nombre = "" Then cad = cad & "Nombre. "
If tb_nif = "" Then cad = cad & "Nif. "
If cad <> "" Then MsgBox "Faltan los datos: " & cad: Exit Sub
'
existe = False
hoja = UCase(tb_centro)
For Each h In Sheets
If h.Name = hoja Then
existe = True
Exit For
End If
Next
If existe = False Then
res = MsgBox("No existe la hoja con el centro: " & hoja & vbCr & vbCr & _
"Desea crear la hoja", vbQuestion + vbYesNo, "CREAR HOJA")
If res = vbYes Then
Set h1 = Sheets.Add(after:=Sheets(Sheets.Count))
h1.Name = hoja
Sheets(1).Rows(1).Copy h1.[A1]
Call PasarDatos(hoja)
Else
tb_centro.SetFocus
Exit Sub
End If
Else
Call PasarDatos(hoja)
End If
End Sub
Sub PasarDatos(hoja)
'Por.Dante Amor
u = Sheets(hoja).Range("A" & Rows.Count).End(xlUp).Row + 1
Sheets(hoja).Cells(u, "A") = tb_centro
Sheets(hoja).Cells(u, "B") = tb_alta
Sheets(hoja).Cells(u, "C") = TextBox1
Sheets(hoja).Cells(u, "D") = tb_nombre
Sheets(hoja).Cells(u, "E") = tb_apellido1
Sheets(hoja).Cells(u, "F") = tb_apellido2
Sheets(hoja).Cells(u, "G") = tb_edad
Sheets(hoja).Cells(u, "H") = tb_nif
Sheets(hoja).Cells(u, "I") = tb_telefono
Sheets(hoja).Cells(u, "J") = tb_email
Sheets(hoja).Cells(u, "K") = tb_facebook
For Each ctrl In Me.Controls
If TypeName(ctrl) = "TextBox" Then ctrl.Value = ""
Next
MsgBox "Cliente Registrado"
End Sub
' : )
'S aludos. Dante Amor. Recuerda valorar la respuesta. G racias
' : )