Counting the Days

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

Guest

In a query i'm tring to calculate days away
example:
[DateReturned]-[DateLeft]
But I would like to calculate [DateReturned] as Date() untill an accual date
has been entered.
 
Try (the lazy way):

IIf( IsDate([DateReturned]) = False, Date(), [DateReturned]) - [DateLeft]
 

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