¿Cómo introducir datos en determinadas celdas repetitivas mediante un textbox?

Que tal tengo una plantilla que mediante un userform configure el para que se copie y se repitan en un rango especifico el problema es que quiero que lo introducido que mediante el textbox 5 sea reemplazado por A001F02 de la celda AW2 y también en AW13, entonces cuando de el botón generar el código introducido sea mostrado en la celda AW21 y después AW33 así sucesivamente . Adjunto mi código

Private Sub CommandButton1_Click()
    'Asignando Objetos de busqueda y hojas
    Set h1 = Sheets("Hoja1")
    Set b = h1.Columns("B").Find(TextBox1, lookat:=xlWhole)
    'Asignando condicional de validacion de codigo
    If Not b Is Nothing Then
        MsgBox " Este codigo ya esta registrado ", vbCritical, "ATENCION !"
        Unload Me
    Load planbulkse
    planbulkse.Show
    'Condicional para ejecutar el codigo
     Else
     'codigo para la busqueda de datos
    u1 = h1.Range("B" & Rows.Count).End(xlUp).Row + 1
    u3 = h1.Range("B" & Rows.Count).End(xlUp).Row + 1
    'Rangos de celdas para copiar y pegar
    h1.Range("C2:C20").Copy
        h1.Range("C" & u1).PasteSpecial Paste:=xlValues
    h1.Range("E2:E20").Copy
        h1.Range("E" & u1).PasteSpecial Paste:=xlValues
    h1.Range("G2:AA20").Copy
        h1.Range("G" & u1).PasteSpecial Paste:=xlValues
    h1.Range("AC2:AV20").Copy
        h1.Range("AC" & u1).PasteSpecial Paste:=xlValues
    'Bucle para el coloreado de celdas
    For i = 1 To 19
      h1.Cells(u1, "B") = Me.TextBox1.Value
        h1.Cells(u1, "B").Interior.Color = RGB(255, 255, 0)
      h1.Cells(u1, "D") = Me.TextBox2.Value
        h1.Cells(u1, "D").Interior.Color = RGB(255, 255, 0)
      h1.Cells(u1, "F") = Me.TextBox3.Value
        h1.Cells(u1, "F").Interior.Color = RGB(255, 255, 0)
      h1.Cells(u1, "AB") = Me.TextBox4.Value
        h1.Cells(u1, "AB").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "AW").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "AX").Interior.Color = RGB(255, 255, 0)
    u1 = u1 + 1
    Next i
    '
    h1.Range("B" & u3).Select
    Application.CutCopyMode = False
    Unload Me
    Load planbulkse
    planbulkse.Show
    End If
    Exit Sub
End Sub
Private Sub CommandButton2_Click()
Unload Me
Exit Sub
End Sub
Private Sub TextBox1_Change()
'Restriccion de 8 Digitos buscador
If Len(Me.TextBox1.Value) = 8 Then
    Me.CommandButton1.Enabled = True
Else
    Me.CommandButton1.Enabled = False
End If
Exit Sub
End Sub
Private Sub UserForm_Click()
End Sub

1 Respuesta

Respuesta
1

Te anexo el código actualizado

Private Sub CommandButton1_Click()
    'Asignando Objetos de busqueda y hojas
    Set h1 = Sheets("Hoja1")
    Set b = h1.Columns("B").Find(TextBox1, lookat:=xlWhole)
    'Asignando condicional de validacion de codigo
    If Not b Is Nothing Then
        MsgBox " Este codigo ya esta registrado ", vbCritical, "ATENCION !"
        Unload Me
        Load planbulkse
        planbulkse.Show
        Exit Sub
    End If
    'Condicional para ejecutar el codigo
     'codigo para la busqueda de datos
    u1 = h1.Range("B" & Rows.Count).End(xlUp).Row + 1
    u3 = h1.Range("B" & Rows.Count).End(xlUp).Row + 1
    'Rangos de celdas para copiar y pegar
    h1.Range("C2:C20").Copy
    h1.Range("C" & u1).PasteSpecial Paste:=xlValues
    h1.Range("E2:E20").Copy
    h1.Range("E" & u1).PasteSpecial Paste:=xlValues
    h1.Range("G2:AA20").Copy
    h1.Range("G" & u1).PasteSpecial Paste:=xlValues
    h1.Range("AC2:AV20").Copy
    h1.Range("AC" & u1).PasteSpecial Paste:=xlValues
    'Bucle para el coloreado de celdas
    h1.Cells(u1, "AW") = Me.TextBox5.Value
    h1.Cells(u1 + 11, "AW") = Me.TextBox5.Value
    For i = 1 To 19
        h1.Cells(u1, "B") = Me.TextBox1.Value
        h1.Cells(u1, "B").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "D") = Me.TextBox2.Value
        h1.Cells(u1, "D").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "F") = Me.TextBox3.Value
        h1.Cells(u1, "F").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "AB") = Me.TextBox4.Value
        h1.Cells(u1, "AB").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "AW").Interior.Color = RGB(255, 255, 0)
        h1.Cells(u1, "AX").Interior.Color = RGB(255, 255, 0)
        u1 = u1 + 1
    Next i
    '
    h1.Range("B" & u3).Select
    Application.CutCopyMode = False
    Unload Me
    Load planbulkse
    planbulkse.Show
End Sub

No entendí si en AW2 y AW13 quieres el dato que tiene el textbox5 o siempre quieres que se ponga el texto "A001F02". La actualización que te puse es parar poner el contenido del textbox5, pero si quieres que siempre te ponga el texto  "A001F02", entonces cambia en la macro estas líneas:

    h1.Cells(u1, "AW") = Me.TextBox5.Value
    h1.Cells(u1 + 11, "AW") = Me.TextBox5.Value

Por estas:

    h1.Cells(u1, "AW") = "A001F02"
    h1.Cells(u1 + 11, "AW") = "A001F02"

'S aludos. Dante Amor. Recuerda valorar la respuesta. G racias

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas