我想创建两个日期戳,一个代表 OK,一个代表 NOT OK。这些值填写在 A 列中,分别是'x' for OK
和'NOK' for NOT OK
。
当 A 列填写“x”时,第 49 列中的值应该是填写“x”时的日期戳。
当在列中填写“NOK”时,第 52 列中的值应该是填写“NOK”时的日期戳。
此外,如果从 A 列中删除“x”或“NOK”,则日期戳也应该消失。这就是我所拥有的。
Private Sub Worksheet_Change(ByVal Target As Range)
'49 = ok
'52 = NOK
Dim KeyCells As Range
' The variable KeyCells contains the cells that will
' cause an alert when they are changed.
Set LastRow = Range("A" & Rows.Count).End(xlUp).Row
Set KeyCells = Range("A1:" & LastRow)
If Application.Intersect(KeyCells, Range(Target.Address)) Like "*x*" Then
Cells(Row, 49).Value = Format(DateTime.Now, "yyyy-MM-dd hh:mm:ss")
End If
If Application.Intersect(KeyCells, Range(Target.Address)) Like "*NOK*" Then
Cells(Row, 52).Value = Format(DateTime.Now, "yyyy-MM-dd hh:mm:ss")
End If
End Sub