I currently have two tables. One has Employee Names and a number associated to that name.
The other date has time sheet date with columns for the employee number, the d
You can try getting the week with datepart function like
SELECT DATEPART(ww, 'your date') AS week;
and then group by week.
Here more info https://www.w3schools.com/sql/func_sqlserver_datepart.asp