Thanks.
Here is the final SQL i have:
I created a ReportDates table with the month, year
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [ReportDates](
[DateMonth] [int] NULL,
[DateMonthName] [nchar](10) NULL,
[DateYear] [int] NULL,
[ThisDate]...