Hi
An update on my code:
Sub test()
Private Sub Workbook_Open()
' Set Up popups for action on current days(s)
Dim bottomO As Integer
Sheets("ListOfSites").Select
bottomO = Range("O" & Rows.Count).End(xlUp).Row
Dim c As Range
For Each c In Range("O11:O" & bottomO)
If c >= Date And c <= Date + 3 Then
MsgBox " Action TODAY : " & c.Offset(0, -11) & c.Offset(0, -1), vbExclamation + vbYesNo
End If
Next c
If MsgBox(“ Action TODAY : ”, vbExclamation + vbYesNo) = vbNo
Then Call "Userform1"
If response = vbYes Then Exit Sub
End If
End If
'Set to open Homepage
Application.ScreenUpdating = False
Worksheets("Home").Activate
Application.ScreenUpdating = True
End Sub
Thanks
Charles
Bookmarks