Macro? Code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Use a textbox with this expression as its Control Source:

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