Macro? Code?

S

Sue

I want to place a control on my form which will calculate the number of days
from now until a specific date in the future - always the same date in the
future, in this case July 5, 2008. Not sure how to achieve this. Help?

Thanks.
 
K

Ken Snell \(MVP\)

Use a textbox with this expression as its Control Source:

=DateDiff("d", Date(), #7/5/2008#)
 
Top