I need to display "Good Morning" or "Good Evening" based on NOW()
Wesley
try:
If Right(Now, 8) < "12:00:00" Then
MsgBox "Good Morning"
Else
MsgBox "Good Afternoon"
End If
Regards
Trevor
"Wesley" wrote in message
...
Been working on this for hours and just can't seem to figure it out.
TIA
Wesley
|