Hello All,

I'm looking for a "Private Sub Worksheet" vba for the following situation.
Excel 2007
On tab (Sheet4) labeled "Orders"
Event trigger = After multiple rows of data have been entered in Column H (data is Date FedEx Delivered a package)
Check to see if the following three conditions are true

1st - Column C - a cell has the phrase -> 2) Replacement Only
2nd - Column B - same row, the cell has a date that is -> older than 10 days
3rd - Column H - same row, the cell is -> blank (should have a date in it - If it has a date - no action regardless of the age of the date in column B)

'When all three conditions are met then...

1. Message box: A Replacement Only Order has not delivered yet
2. Have the cell in column C have this attribute > ActiveCell.Interior.ColorIndex = 6

If there are not any instances then no message or alert.

There could be multiple instances so, it would be cool if the message box could report how many instances occurred.
It wouldn't be necessary for multiple Message box pop ups for each instance. (Just one alert)

Thanks so much in advance.