In the query that is the data source for the report, you can calculate the week number by using the DatePart function.
Weeknum: DatePart("ww",[Date],2,1)
Then you can filter or group based on the week number. In the example above the last two arguments (2,1) are optional and used to...