data enters date in next cell for several columns
The date cell does not contain a formula, just the date. It doesn't change.
Otto
"HELP ME PLEASE" wrote in message
...
Thank alot. This works will the date remain static and not change
tommorrow?
"Otto Moehrbach" wrote:
One way. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count 1 Or IsEmpty(Target.Value) Then Exit Sub
If Target.Column = 21 Or _
Target.Column = 25 Or _
Target.Column = 27 Then
Application.EnableEvents = False
If Target.Value = 1 Then _
Target.Offset(0, 1).Value = Date
Application.EnableEvents = True
End If
End Sub
"HELP ME PLEASE" wrote in
message
...
enter 1 in a cell and it enters static date in next...Have this working
in
one column with the following but need to have it work in columns Y:Y
and
AA:AA also any one know how?
Private Sub Worksheet_General(ByVal Target As Range)
If Target.Cells.Count 1 Or IsEmpty(Target) Then Exit Sub
If Not Intersect(Target, Range("U:U")) Is Nothing Then
Application.EnableEvents = False
If Target.Value = 1 Then
Target.Offset(0, 1).Value = Date
End If
Application.EnableEvents = True
End If
End Sub
|