Microsoft Access

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

Guest

NEED HELP
Can anyone help me? I created a database and form that has a date due field.
I would like to know how to add a pop up field next to the date field that
pops up when the date is past due. The pop up field will not be pop up unless
the date is past due. Please respond if you know how to add this field.
 
Not quite sure what you mean by a "pop up field", but add a text box to your
form, beside the date due field.

As the Control Source for that text box you just added, put

=Iif([DateDue] > Date(), "Overdue", "")

including the = sign. (replace [DateDue] with whatever you've called the
field)
 
Thank you very much. It worked the way I wanted it to.

Douglas J. Steele said:
Not quite sure what you mean by a "pop up field", but add a text box to your
form, beside the date due field.

As the Control Source for that text box you just added, put

=Iif([DateDue] > Date(), "Overdue", "")

including the = sign. (replace [DateDue] with whatever you've called the
field)

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)



Ron said:
NEED HELP
Can anyone help me? I created a database and form that has a date due field.
I would like to know how to add a pop up field next to the date field that
pops up when the date is past due. The pop up field will not be pop up unless
the date is past due. Please respond if you know how to add this field.
 

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

Back
Top