thebatfink
Registered User.
- Local time
- Today, 13:16
- Joined
- Oct 2, 2008
- Messages
- 33
Hi! Bit of a tongue twister topic title but heres what I want to achieve..
I have an existing datetime field named "PlanDay". I want to create a query which will select this date and also a calculated field [PlanWeek] which gives me the Week commencing date (the date of the Monday in the same week) of the selected existing date.
For example here are values in the [PlanDay] field
I would like my query to return..
Is this possible? Any help would be much appreciated! Thanks!
I have an existing datetime field named "PlanDay". I want to create a query which will select this date and also a calculated field [PlanWeek] which gives me the Week commencing date (the date of the Monday in the same week) of the selected existing date.
For example here are values in the [PlanDay] field
Code:
[FONT=Courier New][PlanDay][/FONT]
[FONT=Courier New]04/02/2013[/FONT]
[FONT=Courier New]05/02/2013[/FONT]
[FONT=Courier New]14/02/2013[/FONT]
[FONT=Courier New]24/02/2013[/FONT]
I would like my query to return..
Code:
[FONT=Courier New][PlanDay] [PlanWeek][/FONT]
[FONT=Courier New]04/02/2013 04/02/2013[/FONT]
[FONT=Courier New]05/02/2013 04/02/2013[/FONT]
[FONT=Courier New]14/02/2013 11/02/2013[/FONT]
[FONT=Courier New]24/02/2013 18/02/2013[/FONT]
Code:
SELECT [PlanDay], SOMEFUNCTION(PlanDay) AS [PlanWeek]
FROM [PlanData]
Is this possible? Any help would be much appreciated! Thanks!