![]() |
Check the Date
I would like a VB code that will check the current date and then
perform an action. Something to the effect of: SUB IF today's date is after February 15, 2007 THEN do this ELSE do that END IF END SUB Is it possible? |
Check the Date
Sub qwerty()
d = DateValue("2/15/2007") MsgBox (d) If Now() d Then MsgBox ("after the date") Else MsgBox ("not there yet") End If End Sub -- Gary''s Student gsnu200703 "stewdizzle" wrote: I would like a VB code that will check the current date and then perform an action. Something to the effect of: SUB IF today's date is after February 15, 2007 THEN do this ELSE do that END IF END SUB Is it possible? |
Check the Date
Sub ifdate()'where c5 has your desired date If Date Range("c5") Then MsgBox "Hi" End Sub -- Don Guillett SalesAid Software "stewdizzle" wrote in message ups.com... I would like a VB code that will check the current date and then perform an action. Something to the effect of: SUB IF today's date is after February 15, 2007 THEN do this ELSE do that END IF END SUB Is it possible? |
Check the Date
That worked perfectly Gary's student...thanks
On Feb 4, 9:52 am, Gary''s Student wrote: Sub qwerty() d = DateValue("2/15/2007") MsgBox (d) If Now() d Then MsgBox ("after the date") Else MsgBox ("not there yet") End If End Sub -- Gary''s Student gsnu200703 "stewdizzle" wrote: I would like a VB code that will check the current date and then perform an action. Something to the effect of: SUB IF today's date is after February 15, 2007 THEN do this ELSE do that END IF END SUB Is it possible? |
All times are GMT +1. The time now is 10:00 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com