R
Ricky Nu
I can't get a simple routine which should bring up a
message box every time the worksheet is calculated:
Private Sub Worksheet_Calculate()
MsgBox "OK"
End Sub
I am able to get this working (triggered every time the
worksheet is changed)
Private Sub Worksheet_Change(ByVal Target As Range)
MsgBox "OK"
End Sub
Any ideas why the calculate routine is not working?
message box every time the worksheet is calculated:
Private Sub Worksheet_Calculate()
MsgBox "OK"
End Sub
I am able to get this working (triggered every time the
worksheet is changed)
Private Sub Worksheet_Change(ByVal Target As Range)
MsgBox "OK"
End Sub
Any ideas why the calculate routine is not working?