I'm not sure where you are going with this so I just made a sample from one of my tables.
SELECT Year([LastChangeDT]) AS ChngYear, Format([LastChangeDT],"ww") AS ChngWeek, Count(*) AS Expr1
FROM tblChangeDT
GROUP BY Year([LastChangeDT]), Format([LastChangeDT],"ww");
Problem is, that Format and DatePart don't always get week 53 right. Also, both week 1 and 52/53 can belong to either a calendar year before or after New Year. Thus, you need that year part as well to sort and group correctly when data spans calendar years.
That's why I included Year in my query example. Since year does not divide cleanly into weeks, it is necessary to decide how to handle the first week of the year when it doesn't start on the first day of the week and that also impacts the definition of the Last week of the year. The ISO method may be what Tamura wants but in this case, the correct answer is actually what satisfies the business users.
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
SELECT Year([LastChangeDT]) AS ChngYear, Format([LastChangeDT],"ww"
FROM tblChangeDT
GROUP BY Year([LastChangeDT]), Format([LastChangeDT],"ww"
This query returns: