I wish to create a a list of dates in a database.
I have a database which, amongst other things, holds the list of people who have volunteered to man the Visitor Centre at my local Nature Reserve. This section of the database is effectively just a calendar.
The first column holds the ID which is automatically generated with each new record.
Using this ID I would like to print out a report containing the full date in a particular format.
I thought of using the DateAdd Expression in a form similar to that below.
=DateAdd("d",+[ID],"30-Dec-05")
where 30-Dec-05 is the day before the rota started.
1. Would this expression calculate the date from the ID?
2. Would I use this or a corrected expression in a Query?
3. How can I ensure that the report based on this query would output the dates in correct order?
I would like to print out the date as
Nov 2009 Sat 31
Could I use the following format?
mmm," ",yyyy," ",ddd," ",d
and if so where?
I have a database which, amongst other things, holds the list of people who have volunteered to man the Visitor Centre at my local Nature Reserve. This section of the database is effectively just a calendar.
The first column holds the ID which is automatically generated with each new record.
Using this ID I would like to print out a report containing the full date in a particular format.
I thought of using the DateAdd Expression in a form similar to that below.
=DateAdd("d",+[ID],"30-Dec-05")
where 30-Dec-05 is the day before the rota started.
1. Would this expression calculate the date from the ID?
2. Would I use this or a corrected expression in a Query?
3. How can I ensure that the report based on this query would output the dates in correct order?
I would like to print out the date as
Nov 2009 Sat 31
Could I use the following format?
mmm," ",yyyy," ",ddd," ",d
and if so where?