Auto Calculate days w/start date & End date

B

Ben

I have a form that I would like to calculate how many days are in-between a
start date and an end date. If this is possible any help would be greatly
appreciated. Thank you
 
B

BruceM

=DateDiff("d",[StartDate],[EndDate])

This is how the expression would appear in the Control Source of an unbound
text box. In a query:

CalcDays: DateDiff("d",[StartDate],[EndDate])

Use a name of your choosing in place of CalcDays.
 
B

Ben

Awsome thank you

BruceM said:
=DateDiff("d",[StartDate],[EndDate])

This is how the expression would appear in the Control Source of an unbound
text box. In a query:

CalcDays: DateDiff("d",[StartDate],[EndDate])

Use a name of your choosing in place of CalcDays.

Ben said:
I have a form that I would like to calculate how many days are in-between a
start date and an end date. If this is possible any help would be greatly
appreciated. Thank you
 

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

Top