Hi there,When I run the following SQL statement I get the error "Invalid column name 'Bradford'".select EMPLOYEE.EMPLOY_REF AS Employ_ref, ((Count(distinct Absence.ABSENCE_REF)) * (Count(distinct Absence.ABSENCE_REF)) * (SUM(ABSDET.DAYPORTION))) AS Bradford, (RTRIM(EMPLOYEE.FORENAME)+' '+ EMPLOYEE.SURNAME) AS Employee_Name, SV_LA_CURRENT_POST.LOCATION AS Location, SV_LA_CURRENT_POST.DEPT AS Deptfrom EMPLOYEE INNER JOIN dbo.ABSENCE AS Absence ON EMPLOYEE.EMPLOY_REF = Absence.EMPLOY_REF join ABSDET on Absence.ABSENCE_REF = ABSDET.ABSENCE_REF join SV_LA_CURRENT_POST on EMPLOYEE.EMPLOY_REF = SV_LA_CURRENT_POST.EMPLOY_REFwhere (EMPLOYEE.LEAVER = 0) and absence.ABS_REASON in ('SICK', 'SICKNESS') and absence.UNTILDATE >= DateAdd(ww,-52, CONVERT(datetime, ROUND(CONVERT(float, GETDATE()), 0, 1))) and ABSDET.ABS_DATE >=DateAdd(ww,-52, CONVERT(datetime, ROUND(CONVERT(float, GETDATE()), 0, 1))) and SV_LA_CURRENT_POST.LOCATION = 'LANCASTER' and SV_LA_CURRENT_POST.DEPT = 'BSG' and Bradford >= 100group by EMPLOYEE.EMPLOY_REF, EMPLOYEE.SURNAME, EMPLOYEE.FORENAME, SV_LA_CURRENT_POST.LOCATION, SV_LA_CURRENT_POST.DEPTorder byEMPLOYEE.SURNAMEBasically I want to filter the output of the query to include only rows where the 'Bradford' number is more than or equel to 100, but I can't seem to get the syntax right because Bradford is a calculated number rather than an actual field in the database.Any ideas?Thanks