Access

  • Thread starter Thread starter bazzat
  • Start date Start date
B

bazzat

how do i get access to count days starting with a date, then adding a number
of days and giving me a due date.
 
Dear,

Try to use the DateAdd

e.g. DateAdd("m",2,[YourDateFiled]), which will show a date 2 months later
than your date.

GeorgeC

Ο χÏήστης "bazzat" έγγÏαψε:
 
how do i get access to count days starting with a date, then adding a number
of days and giving me a due date.

Put a calculated field in a Query by typing

DueDate: DateAdd("d", [numberofdays], [startingdate])

Instead of [numberofdays] you can just type a number - 14 for 14 days etc.

John W. Vinson [MVP]
 

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