Eligible for Learner Support Data Definition 2008/2009

L_ADDSUP

DATA DEFINITION

1. Flag signifying whether the learner is eligible for additional learner support.

PURPOSE

2. Indicates if the learner is eligible for additional learner support or not.

CURRENT COLLECTIONS

  • ILR (LR)
  • ILR (UfI)

SOURCE DATA

3. The following variables are used as source data for the calculation of Eligible for Additional Learner Support.

Field NameLabelDataset
L31L31 Additional Support CostLearner Standard File
L_MODE_BL_MODE_B Learners Mode of AttendanceLearner Standard File

DERIVED VARIABLES AND DATASETS

4. The definition produces the following derived variable(s)

Field NameLabelDataset
L_ADDSUPL_ADDSUPP Eligible for Learner SupportLearner Standard File, Aims Standard File

VALUES
5. The table below outlines the categories for L_ADDSUP

ValueLabel
1Yes
0No

DETAILED DEFINITION

6. Where learners are part time (L_MODE_B>1) and their Additional Support Cost (L31) is greater than 170, they are eligible for additional support (L_ADDSUP=1).

7. Where learners are full time (L_MODE_B=1) and their Additional Support Cost (L31) is greater than 501 then they are eligible for additional support (L_ADDSUP=1).

8. Note that this is for statistical purposes only. A learner may have a value in Additional Support Cost (L31) that is greater than the above figures and still not be eligible for Additional Support funding through the FE funding calculation.


Eligible for Additional Learner Support Sample Code

1. The following SPSS code is provided to illustrate the Eligible for Additional Learner Support data definition.

L_ADDSUP

2. The following table shows the steps required to derive L_ADDSUP

StepConditionAction/Action if trueAction if false
1AnySet L_ADDSUP to 0
2Is L_MODE_B>=2Go to 3Go to 4
3Is L31>=170 Set L_ADDSUP to 1
4Does L_MODE_B=1Go to 4Go to 5
5Is L31>=501Set L_ADDSUP to 1
6Does L31=0Set L_ADDSUP to 0 

3. The following SPSS code illustrates how to derive L_ADDSUP.

COMPUTE L_ADDSUP=0.
IF L_MODE_B>=2 AND L31>=170 L_ADDSUP=1.
IF L_MODE_B=1 AND L31>=501 L_ADDSUP=1.
VARIABLE LABELS L_ADDSUP 'L_ADDSUP Eligible for Learner Support’.
VALUE LABELS L_ADDSUP 0 ‘Not eligible for Additional Support’
1 ‘Eligible for Additional Support’

VALUE LABELS L_ADDSUPP
0 ‘No’
1 ‘Yes’.



Date last modified: 20th January 2009