I have Todays date inserted into Column J when something is typed in Column A, and removed if I delete...... this works well......
But somtimes I need to change the cell in Column A and then the date changes...... what I need is it to stay with the date created....
This is the code i have so far.......
If Target.Column = 1 And Target.Cells.Count = 1 Then
Select Case Target.Cells.Value
Case Else
Target.Offset(0, 9).Value = Sheet2.Cells(1, 1)
End Select
If Len(Trim(Target.Value)) = 0 Then
Cells(Target.Row, "J").Value = ""
End If
End If
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("C:G")) Is Nothing Then
Target(1).Value = UCase(Target(1).Value)
But somtimes I need to change the cell in Column A and then the date changes...... what I need is it to stay with the date created....
This is the code i have so far.......
If Target.Column = 1 And Target.Cells.Count = 1 Then
Select Case Target.Cells.Value
Case Else
Target.Offset(0, 9).Value = Sheet2.Cells(1, 1)
End Select
If Len(Trim(Target.Value)) = 0 Then
Cells(Target.Row, "J").Value = ""
End If
End If
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("C:G")) Is Nothing Then
Target(1).Value = UCase(Target(1).Value)