Borrar dato o modificar
Nuevamente te agradezco por la respuesta anterior sobre guardar una hoja. Ahora necesito otra ayuda y es : tengo el siguiente código que me agrega un dato (que yo le llamo código) a una hoja necesito por favor como hacer para que en caso de ser necesario también pueda modificar o borrar ese dato (código) gracias!
Private Sub UserForm_Click()
Private Sub UFAGREGAR_Click()
'definimos las variables
Dim iFila As Long
Dim ws As Worksheet
Set ws = Worksheets(1)
' Encuentra la siguiente fila vacía
iFila = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 10).Row
' Verifica que se ingrese un codigo
If Trim(Me.UFCODIGO.Value) = "" Then
Me.UFCODIGO.SetFocus
MsgBox "DEBE INGRESAR UN CODIGO"
Exit Sub
End If
' Copia los datos a la tabla Excel
ws.Cells(iFila, 1).Value = Me.UFCODIGO.Value
' Limpia el formulario
Me.UFCODIGO.Value = ""
Me.UFCODIGO.SetFocus
End Sub
Private Sub UserForm_Click()
Private Sub UFAGREGAR_Click()
'definimos las variables
Dim iFila As Long
Dim ws As Worksheet
Set ws = Worksheets(1)
' Encuentra la siguiente fila vacía
iFila = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 10).Row
' Verifica que se ingrese un codigo
If Trim(Me.UFCODIGO.Value) = "" Then
Me.UFCODIGO.SetFocus
MsgBox "DEBE INGRESAR UN CODIGO"
Exit Sub
End If
' Copia los datos a la tabla Excel
ws.Cells(iFila, 1).Value = Me.UFCODIGO.Value
' Limpia el formulario
Me.UFCODIGO.Value = ""
Me.UFCODIGO.SetFocus
End Sub
1 Respuesta
Respuesta de paramisolo
1