Hi Carlton
Ok, 500 rows and most out of screen, one dedicated user, yes that makes
sense.
Here's what I'd do:
Insert a new Row 1 so the first row of data is in row 2.
In cell I2 a formula like this:
=IF(AND(E2>A2,F2>B2,G2>C2),"YO","")
Fill it down the rows as far as needed. Now the I column cell will display
YO in rows where the conditions are met. You can format this conditionally
or just plain awful -notifications are best at their worst.
Now in row 1, cell I1, this formula:
=COUNTIF(I2:I2000,"YO")
Now I1 will display the amount of YOs. Freeze row 1 and it'll always be
there.
Now if you really need some notification: Rightclick the sheet tab, "view
code", paste this in:
Private Sub Worksheet_Calculate()
If Range("I1").Value > 0 Then
Beep
'or msgbox
'or play sound
'or send email
'or whatever
End If
End Sub
HTH. Best wishes Harald