PDA

Click to See Complete Forum and Search --> : how to find tommorow's date...


scotty
Jan 2nd, 2000, 09:08 AM
In light of all the Y2K hoopla...

Is there a "correct" way to call a function and find out tommorow's date. Would like to compensate for leap year...

Scott

Clunietp
Jan 2nd, 2000, 09:10 AM
Dim datTomorrow As Date

datTomorrow = DateAdd("d", 1, Date)

MsgBox datTomorrow

scotty
Jan 2nd, 2000, 09:56 AM
Thanks for your help...

That code works like a charm.

Scott