what are the field names in your table [Final Data], you need to refer to those in your INSERT statement
SQL = "Insert into [Final Data](Field1, Field2, .... etc) values ( '" & Me.Month & "','" & Me.Week & "', .... etc)
ensure you list the field names and values in the correct corresponding...