Sep 11, 2006 #1 dumdum2 Programmer Mar 18, 2000 98 GB Is there a way to check if today's date, ie date() is a Friday? Thanks!
Sep 11, 2006 #2 Golom Programmer Sep 1, 2003 5,595 CA Code: If WeekDay(Date()) = 6 Then MsgBox "Today is Friday" End If Upvote 0 Downvote
Sep 11, 2006 Thread starter #3 dumdum2 Programmer Mar 18, 2000 98 GB thanks, i knew it was something simple! Upvote 0 Downvote