Date Fields

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

Guest

I am fairly new at Access and learning alot here in the discussions group. I
appreciate everyones help that I have received.

I have a question. I have a form that has a date due field. I would like to
have a calculated field on the form that will indicate when the due date is
within 30 days. Also if this field can then count down the days to zero.

Thanks,
Ron
 
I am fairly new at Access and learning alot here in the discussions group. I
appreciate everyones help that I have received.

I have a question. I have a form that has a date due field. I would like to
have a calculated field on the form that will indicate when the due date is
within 30 days. Also if this field can then count down the days to zero.

Thanks,
Ron

Set the control source of an unbound control to:

=IIf([DateDue]-Date() Between 0 And 30,[DateDue]-Date(),"")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top