The reason is because the P_Count_OverallQSRExclude field does not include 15/16 learners who have exceeded the time they can complete in during the following year for overall measures so are excluded from the leaver count (i.e. funded start) even though they have completed and achieved.
Just looking at P_Count_OverallQSRExclude field as we would normally:
Code: Select all
SELECT
NumLeavers = SUM ( M.P_Count_OverallQSRExclude )
FROM ProAchieve.dbo.CL_Midpoint M
WHERE
M.CL_MidpointID = 'C1116021'
AND
M.PG_HybridEndYearID = '15/16'
Code: Select all
SELECT
NumLeavers =
SUM (
CASE
WHEN M.CLOverdue = 1 AND M.P_Count_OverallQSRExclude = 0 THEN 1
ELSE M.P_Count_OverallQSRExclude
END
)
FROM ProAchieve.dbo.CL_Midpoint M
WHERE
M.CL_MidpointID = 'C1116021'
AND
M.PG_HybridEndYearID = '15/16'
I just thought it was worth letting people know as it has taken us a while to figure out why our 15/16 leaver count had gone slightly out when generating new 16/17 CL summaries.