Hi,
I have the following code for one of my worksheets:
Private Sub Worksheet_Calculate()
Dim c As Range
For Each c In Range("O4:O46")
If c.Value <= 0 Then MsgBox "Updates are available", vbInformation
Next c
End Sub
How do I get this to run only once when I open Excel?
Any help you be appreciated.
Bookmarks