Question : Calculate and display start and end dates of each week within a quarter

Hello Experts,

I would like help in creating all the week start date and end dates that fall within a quarter for each month.  For the first week of the month within a quarter the start date of the week will be the first of that month irrespective of the day it falls on and the week ends on the Saturday but for the subsequent weeks within the month the start day of the should be Sunday.  I found some codes in this website and put together what I need but I am stuck at the week calculation.

Appreciate your help on this.

Thanks.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
Declare @InputDate datetime
Set @InputDate = '2008-09-22'
 
Select Case when Datepart(Q,@InputDate) = 1 then 'Q1'
			when Datepart(Q,@InputDate) = 2 then 'Q2'
			when Datepart(Q,@InputDate) = 3 then 'Q3'
			when Datepart(Q,@InputDate) = 4 then 'Q4'
		end as Quarter
		,CAST(YEAR(@InputDate) AS VARCHAR(4)) +
                       CASE WHEN MONTH(@InputDate) IN ( 1,  2,  3) THEN '/01/01'
                            WHEN MONTH(@InputDate) IN ( 4,  5,  6) THEN '/04/01'
                            WHEN MONTH(@InputDate) IN ( 7,  8,  9) THEN '/07/01'
                            WHEN MONTH(@InputDate) IN (10, 11, 12) THEN '/10/01'
                       END
			as QuarterStartDate
		,CAST(YEAR(@InputDate) AS VARCHAR(4)) +
                       CASE WHEN MONTH(@InputDate) IN ( 1,  2,  3) THEN '/03/31'
                            WHEN MONTH(@InputDate) IN ( 4,  5,  6) THEN '/06/30'
                            WHEN MONTH(@InputDate) IN ( 7,  8,  9) THEN '/09/30'
                            WHEN MONTH(@InputDate) IN (10, 11, 12) THEN '/12/31'
                       END
			as QuarterEndDate
		,dateadd( month, datediff( month, 0, @InputDate ), 0 ) as BeginMonth
		,Cast(convert(varchar(10),@InputDate,120)as datetime)-
			datepart(dw, cast(convert(varchar(10),@InputDate,120)as datetime))+1 as StartofWeek
		,Cast(convert(varchar(10),@InputDate,120)as datetime)-
			datepart(dw, cast(convert(varchar(10),@InputDate,120)as datetime))+7 as EndofWeek
Open in New Window Select All

Answer : Calculate and display start and end dates of each week within a quarter

I have found a work around for this issue.  I would like the question to be closed.

Thanks
Random Solutions  
 
programming4us programming4us