C
Carlos M.
Hello friends
1*since I make to unite these two macro function of this 1er macro to place
the date in column 4 when something writes in column 1
2*el second macro to place the hour in column 5 when something writes in
column 1
3*el third macro to place the hour in column 7 when something writes in
column 6
1---------------------------------------------------------------------------
-------
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("A:A"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 3)
.NumberFormat = "dd mmm yyyy"
.Value = Date
End With
Application.EnableEvents = True
End If
End With
End Sub
2---------------------------------------------------------------------------
--------
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("A:A"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 4)
.NumberFormat = "hh:mm AM/PM"
.Value = Time
End With
Application.EnableEvents = True
End If
End With
End Sub
3---------------------------------------------------------------------------
-----
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("F:F"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 6)
.NumberFormat = "hh:mm AM/PM"
.Value = Time
End With
Application.EnableEvents = True
End If
End With
End Sub
1*since I make to unite these two macro function of this 1er macro to place
the date in column 4 when something writes in column 1
2*el second macro to place the hour in column 5 when something writes in
column 1
3*el third macro to place the hour in column 7 when something writes in
column 6
1---------------------------------------------------------------------------
-------
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("A:A"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 3)
.NumberFormat = "dd mmm yyyy"
.Value = Date
End With
Application.EnableEvents = True
End If
End With
End Sub
2---------------------------------------------------------------------------
--------
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("A:A"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 4)
.NumberFormat = "hh:mm AM/PM"
.Value = Time
End With
Application.EnableEvents = True
End If
End With
End Sub
3---------------------------------------------------------------------------
-----
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("F:F"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 6)
.NumberFormat = "hh:mm AM/PM"
.Value = Time
End With
Application.EnableEvents = True
End If
End With
End Sub