When you create an aggregate query (SUM, COUNT, MAX, MIN, etc.) then every field that is in the SELECT must either be in an aggregate function (SUM, COUNT, MAX, MIN, etc.) or be in the GROUP BY.
You have no GROUP BY. So, you either need to get rid of [Employees Extended].ID, [Employees...