我有这段代码,它工作正常,但我只有 1 个问题。
它不像我想要的那样工作。
我希望它在每次更改更改时弹出 msgbox。
如果单元格E45
值不是"True"
那么当我更改为不同的工作表时我想要它提示我说"Records DO NOT Match, would you still like to continue?"
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("E45") <> "TRUE" Then
MsgBox "Records Do Not Match"
End If
End Sub