Another Access Function for Dates

G

Guest

Is there a function that will examine the "Date" field and return the last day of the month for the Date indicated? For example

Date EndDat
6/10/2003 6/30/200
7/5/2003 7/31/200
2/25/2003 2/28/200
 
B

Brian Camire

You might use an expression something like this:

DateSerial(Year([Your Date Field]), Month([Your Date Field]) + 1, 0)


Kirk P. said:
Is there a function that will examine the "Date" field and return the last
day of the month for the Date indicated? For example:
 

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