In a query, I group a range of dates into a week number with the following formula:
WeekNum: DatePart("ww",[Date],4)
How can I take that WeekNum and turn it into a date that is always a Tuesday with a label EndDate.
For Example, if:
WeekNum = 1
EndDate = 1/2/03 (tuesday)
or
WeekNum = 2
EndDate = 1/9/03 (tuesday)
Thanks for any help.
WeekNum: DatePart("ww",[Date],4)
How can I take that WeekNum and turn it into a date that is always a Tuesday with a label EndDate.
For Example, if:
WeekNum = 1
EndDate = 1/2/03 (tuesday)
or
WeekNum = 2
EndDate = 1/9/03 (tuesday)
Thanks for any help.