SELECT DATEADD(DAY, -DATEDIFF(DAY, 0, [Order Date]) % 7, [Order Date]) AS [Week of],
COUNT(*) AS Count
FROM dbo.your_table_name
GROUP BY DATEADD(DAY, -DATEDIFF(DAY, 0, [Order Date]) % 7, [Order Date])
Welcome aboard! That's a great bit of code considering the OP offered almost no details.
It does seem to assume that weeks start on Mondays (which I totally agree with and is ISO). We'll see how the OP defines what a week is.
--Jeff Moden
Change is inevitable... Change for the better is not.