Date Question

  • Thread starter Thread starter David W
  • Start date Start date
D

David W

I have a text box named [date3] that has the date of the future in it
like 9/9/2005

How do you fiqure how manny days are left until that day?

Thanks
David
 
David said:
I have a text box named [date3] that has the date of the future in it
like 9/9/2005

How do you fiqure how manny days are left until that day?


DateDiff("d", date3, Date())
 
Back
Top