我需要列中的单元格" F"在培训日期更新后,在#34; J"中的同一行更新内容。
答案 0 :(得分:0)
在工作表的VBA中(在VBE的VBAProject窗格中单击该工作表)。使用Worksheet_Change()
事件。这是一个事件,一大块代码,只要工作表发生变化就会执行。 Target
是一个特殊变量,它将包含代码执行时更改的范围/单元格:
Private Sub Worksheet_Change(ByVal Target As Range)
'Did something change in column J?
If Not Intersect(Target, Range("J:J")) Is Nothing Then
'Set the cell in Column F for the same row to nothing
Range("F" & Target.Row).ClearContents
End If
End Sub