![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/03/2011, 08:10
|
![Avatar de mrocf](http://static.forosdelweb.com/customavatars/avatar174421_2.gif) | | | Fecha de Ingreso: marzo-2007 Ubicación: Bs.As.
Mensajes: 1.103
Antigüedad: 17 años, 10 meses Puntos: 88 | |
Actualizar la fecha cada vez que se cambie una celda Hola! RaanMavi. Quizás te pueda ser útil lo siguiente:
Código VB:
Ver originalPrivate Sub Worksheet_Change(ByVal Target As Range) With Target If .Columns.Count <> 1 Or .Rows.Count <> 1 Then Exit Sub ' Si la columna modificada es la C, se escribe la fecha If .Column = 3 Then Application.EnableEvents = False: .Offset(, 1) = Date Application.EnableEvents = True End If End With End Sub
Saludos, Cacho. |