diff --git a/aux.py b/aux.py deleted file mode 100644 index ace0bf3..0000000 --- a/aux.py +++ /dev/null @@ -1,135 +0,0 @@ -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -import random as rd -import csv - - -df = pd.read_excel("SDR-2022-database.xlsx", sheet_name='Raw Data - Trend Indicators') - - -new_rows = [] -for country, group in df.groupby('id'): - data_columns = group.columns.values[5::] - for column in data_columns: - column_new = column.replace(' ', '') - if column_new == 'sdg2_stuntihme': - column_new = 'sdg2_stunting' - if column_new == 'sdg2_wasteihme': - column_new = 'sdg2_wasting' - if column_new == 'sdg5_fplmodel': - column_new = 'sdg5_familypl' - new_row = [column_new, int(column.split('_')[0][3::])] + group[column].values.tolist() - new_rows.append(new_row) - -all_years = sorted(df.Year.unique()) - - -dfn = pd.DataFrame(new_rows, columns=['seriesCode', 'sdg']+[str(year) for year in all_years]) -colYears = [c for c in dfn.columns if str(c).isnumeric() ] - -dfn = dfn[np.isnan(dfn[colYears].values).sum(axis=1) == 0] - -indices = [] -for code in dfn.seriesCode.unique(): - index = rd.sample(np.where(dfn.seriesCode == code)[0].tolist(), 1)[0] - indices.append(index) - - -dfn = dfn.iloc[indices] -dfn = dfn[dfn.seriesCode!='sdg10_gini'] - - - -dff = pd.read_excel("SDR-2022-database.xlsx", sheet_name='Codebook') -indis_names = dict(zip(dff.IndCode, dff.Indicator)) -dfn['seriesName'] = [indis_names[code] for code in dfn.seriesCode] - - -min_vals = dict(zip(dff.IndCode, dff['Optimum (= 100)'])) -max_vals = dict(zip(dff.IndCode, dff['Lower Bound (=0)'])) - -dfn['bestBound'] = [max_vals[code] for code in dfn.seriesCode] -dfn['worstBound'] = [min_vals[code] for code in dfn.seriesCode] - - - -dft = pd.read_csv("SDR_tech_bounds.csv") -instrumentals = dict(zip(dft.IndCode, dft.instrumental)) -invert = dict(zip(dft.IndCode, dft.invert)) - -dfn['instrumental'] = [instrumentals[code] if code in instrumentals else 1 for code in dfn.seriesCode] -dfn['invert'] = [invert[code] if code in invert else 1 for code in dfn.seriesCode] -dfn.loc[np.isnan(dfn.invert), 'invert'] = 0 - -for index, row in dfn.iterrows(): - min_val = min([row.bestBound, row.worstBound]) - max_val = max([row.bestBound, row.worstBound]) - norm_vals = (row[colYears].values - min_val)/(max_val - min_val) - if np.sum( (norm_vals>1) | (norm_vals<0) ) > 0: - print(row.seriesCode) - - -file = open("sdg_colors.txt", 'r') -colors_sdg = dict([(i+1, line[0]) for i, line in enumerate(csv.reader(file))]) -file.close() -dfn['color'] = [colors_sdg[sdg] for sdg in dfn.sdg] - - -dfn.to_csv("raw_indicators.csv", index=False) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/wales/01_data_prep_indicators.R b/wales/01_data_prep_indicators.R new file mode 100644 index 0000000..25f419f --- /dev/null +++ b/wales/01_data_prep_indicators.R @@ -0,0 +1,157 @@ +########################################################## +# Purpose: to retrieve data from statswalesr to inform ppi +## 1a. Retrieving statswales indicator data +## 1b. Reshaping and aggregating for modelling + +#install.packages("statswalesr") +library("statswalesr") +library("tidyverse") +outputpath <- "~/wales/" + +health_search <- unique(statswales_search("child")$Dataset) +health_search <- c(health_search,unique(statswales_search("health")$Dataset)) +health_search <- c(health_search,unique(statswales_search("care")$Dataset)) + +# A loop helps us to retrieve metadata from string of datasets +health_fullmetadata <- data.frame() +for(i in health_search$Dataset) { + temp <- statswales_get_metadata(i) + health_fullmetadata <- rbind(health_fullmetadata,temp) + rm(temp) +} +# We select the Title of the indicator +health_metadata <- unique(health_fullmetadata[health_fullmetadata$Tag_ENG=="Title", c("Dataset","Description_ENG")]) + +# To fetch data I create a dataframe to append rows from the loop below +# this as functions only retrieve one indicator at a time + +indicators_data <- data.frame() +for(i in unique(health_metadata$Dataset)) { + temp <- statswales_get_dataset(i) + + # retrieving relevant columns to identify unique indicators + if(c('Dataitem_Code') %in% colnames(temp)) { + tempi <- unique(temp[,c('Dataitem_Code','Dataitem_ItemName_ENG')]) + } else if(c('DataItem_Code') %in% colnames(temp)) { + tempi <- unique(temp[,c('DataItem_Code','DataItem_ItemName_ENG')]) + } else if(c('HealthBehaviour_Code') %in% colnames(temp)) { + tempi <- unique(temp[,c('HealthBehaviour_Code','HealthBehaviour_ItemName_ENG')]) + } else if(c('Measure_ItemName_ENG') %in% colnames(temp)) { + tempi <- unique(temp[,c('Measure_Code','Measure_ItemName_ENG')]) + } else if(c('Month_ItemName_ENG') %in% colnames(temp)) { + tempi <- unique(temp[,c('Month_Code','Month_ItemName_ENG')]) + } else if(c('Intouch_ItemName_ENG') %in% colnames(temp)) { + tempi <- unique(temp[,c('Intouch_Code','Intouch_ItemName_ENG')]) + } else if(c("Activity_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Activity_Code','Activity_ItemName_ENG')]) # care0138 also stratifies by Accommodation + } else if(c("Category_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Category_Code','Category_ItemName_ENG')]) # care0147 also stratifies by Gender_ItemName_ENG + } else if(c("AgeGroup_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('AgeGroup_Code','AgeGroup_ItemName_ENG')]) # care0150 also stratifies by ChildStatus and Immunisations + } else if(c("Age_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Age_Code','Age_ItemName_ENG')]) # care0150 also stratifies by ChildStatus and Immunisations + } else if(c("ChildStatus_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('ChildStatus_Code',"ChildStatus_ItemName_ENG")]) # care0151 stratifies by MentalHealth + } else if(c("Need_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Need_Code',"Need_ItemName_ENG")]) + } else if(c("Needforcare_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Needforcare_Code',"Needforcare_ItemName_ENG")]) + } else if(c("Adoptions_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Adoptions_Code','Adoptions_ItemName_ENG')]) # care0044 also stratifies for Duration + } else if(c("Placement_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Placement_Code','Placement_ItemName_ENG')]) + } else if(c("Source_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Source_Code','Source_ItemName_ENG')]) + } else if(c("Indicator_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Indicator_Code','Indicator_ItemName_ENG')]) + } else if(c("Notification_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Notification_Code','Notification_ItemName_ENG')]) + } else if(c("CauseofDeath_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('CauseofDeath_Code','CauseofDeath_ItemName_ENG')]) + } else if(c("Careprovided_ItemName_ENG") %in% colnames(temp)) { + tempi <- unique(temp[,c('Careprovided_Code','Careprovided_ItemName_ENG')]) + } else if(c('Date_Code') %in% colnames(temp)) { + tempi <- unique(temp[,c('Date_Code','Date_ItemName_ENG')]) + } + + # rename the different columns into a single identity + colnames(tempi)[grepl('ItemName_ENG',colnames(tempi))] <- 'itemname' + colnames(tempi)[grepl('_Code',colnames(tempi))] <- 'code' + tempi$code <- paste0(tempi$code) + + tempi$Dataset <- paste0(i) + tempi$Description <- unique(health_metadata$Description_ENG[health_metadata$Dataset == paste0(i)]) + chmetashort <- bind_rows(indicators_data, tempi) + rm(tempi,temp) +} + +# to test that we have no duplicates for key variables +table(duplicated(indicators_data[,c('Localauthority_Code','Localauthority_ItemName_ENG', + 'Dataitem_Code','Dataitem_ItemName_ENG', + 'Dataset','Description_ENG','category','Year_Code')])) + +# we group to keys and aggregate to the columns of interest in terms of modelling +chdata2 <- indicators_data %>% group_by(Localauthority_Code,Localauthority_ItemName_ENG, + Dataitem_Code,Dataitem_ItemName_ENG, + Dataset,category) %>% + # value -999 dropped as missing + filter(Data != -999) %>% + + # create improvement column which codes positive changes as 1 and else as 0 + mutate(improvement = ifelse((Data - lag(Data, + default = first(Data), order_by = Year_Code)) > 0,1,0), + # create a denominator column for N - 1 rows + denominator = n() - 1, + # initial and final values for each indicator + initial_value = first(Data), + # initial value for the indicator + final_value = last(Data)) %>% + + # we drop indicators with 4 or fewer observed values + filter(denominator > 4) %>% + + # create success rate which considers improvement spells over total spells + mutate(success_rate = sum(improvement, na.rm = T) / denominator) %>% + + # we rename local authority columns to match budget data + rename('Authority_ItemName_ENG' = 'Localauthority_ItemName_ENG', + 'Authority_Code' = 'Localauthority_Code') %>% + + # create min and max values for each indicators based on the data available + group_by(Dataitem_Code,Dataitem_ItemName_ENG) %>% + mutate(min_value = min(Data, na.rm = T), max_value = max(Data, na.rm = T)) %>% + + # select and deduplicate + select(Authority_ItemName_ENG,Authority_Code,Dataitem_Code,Dataitem_ItemName_ENG, + Dataset,category, denominator, initial_value, final_value, success_rate, + max_value, min_value) %>% + unique() + +###################################### +## 2a. Retrieve spending data +## 2b. Aggregate for analysis on ppi +###################################### + +# we export codes and description +write.csv(statswales_get_dataset("lgfs0016") %>% filter(Column_ItemName_ENG == "Net (current) expenditure") %>% + select(Row_ItemName_ENG,Row_Code) %>% unique(), paste0(outputpath,"budget_description.csv"), row.names = F) + +# to retrieve data +spend_data <- statswales_get_dataset("lgfs0016") %>% + + # Only focusing on Net expenditure for the moment + filter(Column_ItemName_ENG == "Net (current) expenditure") %>% + + # We get the average spending through the years + group_by(Authority_ItemName_ENG,Authority_Code,Row_ItemName_ENG, + Row_Code) %>% summarise(expenditure = mean(Data), + initial_year = min(Year_Code), + final_year = max(Year_Code)) + +############################################################ +# 3. Temporarily join expenditure data with indicators +# Natural language analysis produces the relational table +# which replaces this section + +matrix <- spend_data %>% inner_join(chdata2) +write.csv(matrix, paste0(outputpath,"matrix.csv"), row.names = F) diff --git a/wales/README.md b/wales/README.md new file mode 100644 index 0000000..492ec2c --- /dev/null +++ b/wales/README.md @@ -0,0 +1,9 @@ +StatsWales<\href="https://statswales.gov.wales/Catalogue"> allows to view, manipulate, create and download tables from Welsh data. + +01_data_prep_indicators.R downloads and reshapes the data for analysis + a) health, care and child related indicators + b) budget for LAs + c) inicipient matching of both + +template_relation_table.csv is provided by the Spend and Outcomes Tool (SPOT). In it, PHE experts grouped indicators according to the programme they were most strongly related to, and then mapped spend to these outcomes after examining which spend area the indicator was most likely linked to. Outcome indicators include both service level and population level outcomes. +The table and methodology are available at https://analytics.phe.gov.uk/apps/spend-and-outcomes-tool/#!/method \ No newline at end of file diff --git a/wales/budget_description.csv b/wales/budget_description.csv new file mode 100644 index 0000000..0c31b03 --- /dev/null +++ b/wales/budget_description.csv @@ -0,0 +1,121 @@ +Row_ItemName_ENG,Row_Code +Schools expenditure (including delegated and non-delegated funding),1 +Non-school expenditure,2 +"Transport planning, policy and strategy",3 +Highways and roads,4 +Transport,5 +Personal social services - children and families,6 +Personal social services - older persons,7 +Personal social services - adults aged under 65,8 +Personal social services - other,9 +Cultural and heritage services,10 +Library services,11 +Recreation and sport,12 +Open spaces,13 +Tourism,14 +Coast protection,16 +Environmental health,17 +Street cleansing (not chargeable to highways),18 +Community safety,19 +Own agriculture and fisheries services,21 +Trading standards/Consumer protection,22 +Waste collection,23 +Waste disposal,24 +Building control,25 +Development control,26 +Planning policy,27 +Environmental initiatives,28 +Economic development,29 +Community development (county and county borough councils),30 +Magistrates' courts services,31 +Coroners' and other courts services,32 +Housing strategy,33 +Registered social landlords,34 +Housing advice,35 +Housing advances,36 +Private sector housing renewal,37 +Homelessness,38 +Housing benefit payments,39 +Housing benefit administration,40 +Other council fund housing,41 +Council tax benefit payment and related administration,42 +Local tax collection,43 +Elections,44 +Emergency planning,45 +Other central services to the public,46 +Corporate and democratic core,57 +Non-distributed costs/Unapportionable central overheads,58 +Other central costs,59 +Total service expenditure,60 +Community council precepts,61 +Payments to/from fire authorities,62 +Levies paid to the Environment Agency in respect of Local Flood Defence Committees,64 +Levies paid to the Environment Agency acting as an Internal Drainage Board,66 +Levies paid to Sea Fisheries Committees,67 +Other levies,69 +Net current expenditure,72 +Bad debt 'provision',73 +Provision for repayment of principal (before application of the commutation adjustment),74 +Commutation adjustment (enter as a negative any adjustment which reduces MRP and vice versa),75 +External interest payments excluding any premia and discounts on debt rescheduling,76 +Premia and discounts on debt rescheduling,77 +HRA 'item 8' interest payments/receipts,78 +Capital expenditure charged to revenue account,82 +"External interest on provision for credit liabilities (including 'set-aside' capital receipts), housing advances and other sources",84 +Gross revenue expenditure,86 +less specific and special grants outside AEF (excluding council tax benefit and rate relief grants),87 +Revenue expenditure,88 +less specific and special grants inside AEF,89 +Net revenue expenditure,90 +Other adjustments,91 +Appropriations to() / from(-) earmarked financial reserves (excluding schools' financial reserves),92 +Appropriations to() / from(-) unallocated financial reserves,93 +Budget requirement,94 +Budgeted net discretionary non-domestic rate relief paid for by council fund,99 +Budget requirement plus net council fund discretionary non-domestic rate relief,100 +less transitional grant,101 +less revenue support grant,103 +less redistributed non-domestic rates income,104 +Aggregate of council tax precepts,106 +less council tax reduction scheme grant,107 +Amount to be raised from council tax payers,108 +"Cemetery, cremation and mortuary services",15 +Own flood defence and land drainage services,20 +Levies to/from national parks,63 +(Non-significant) surpluses/deficits on internal trading accounts not disaggregated to services,70 +Other adjustments to net current expenditure,71 +Levies paid to the Internal Drainage Boards,65 +Leasing payments (excluding any capital financing element within PFI schemes),81 +Capital financing element within Private Finance Initiative (PFI) schemes,80 +External interest receipts on HRA balances,85 +Police services,47 +less police grant allocation under principal formula,102 +Levies to national police services,68 +Fire service emergency planning and civil defence,48 +All other fire services,49 +National parks conservation,50 +National parks planning,51 +National parks recreation and park management,52 +National parks promoting understanding and enjoyment,56 +Pensions interest cost and expected return on pensions assets,83.1 +Appropriations to() / from(-) pension reserves,83.2 +less specific and special grants,89.5 +Service strategy - adult services,6.5 +Housing council fund,39.5 +Community fire safety,47.5 +Fire-fighting and rescue operations,47.6 +Fire service emergency planning,47.7 +National parks services,50.1 +Waste,23.1 +Fire services,47.8 +Revenue expenditure funded from capital by statute (RECS),82.1 +Appropriations to() / from(-) financial instruments adjustment account,83.3 +Appropriations to() / from(-) unequal pay back pay account,83.4 +Appropriations to() / from(-) Accumulated Absences Account,83.5 +Business support,28.2 +Economic research,28.4 +In year council tax collection adjustment,90.5 +Council tax reduction scheme (including RSG element),93.5 +less council tax reduction scheme (including RSG element),103.5 +Community Infrastructure Levy,85.5 +COVID-19 - costs not included in above service lines,59.5 diff --git a/wales/ftp/1a_indicators_england.py b/wales/ftp/1a_indicators_england.py new file mode 100644 index 0000000..b317b1d --- /dev/null +++ b/wales/ftp/1a_indicators_england.py @@ -0,0 +1,243 @@ +# -*- coding: utf-8 -*- +""" +Modified Feb 17 2023 +# This script aims to : + 1) retreieve metadata , + 2) retrieve data from fingertips by indicator + 3) format wide timeseries and creates columns needed for ppi +""" +# Install fingertips with pip install fingertips_py + +# 0) import libraries, define paths +import pandas as pd +import numpy as np +from math import isnan +import fingertips_py as ftp +home = "~/" # add path acordingly +output_path = home + "output/england/" + +# 1) import metadata for 39 profiles +metadata = [] +for i in [155,18,19,20,26,29,30, 32, 36, 37,40,41,45,46,55,58,65,76,79,84,86,87,91,92,95,98,99,101,102,105,106,125,130,133,135,139,141,143,146]: + sm = ftp.get_metadata_for_profile_as_dataframe(i) + sm['profile_id'] = i + sm['profile'] = sm.profile_id.map(profile_dict) + metadata.append(sm) + +metadata = pd.concat(metadata) + +# spot profiles +metadata = ftp.get_metadata_for_profile_as_dataframe(155) +metadata = metadata.loc[~metadata.Indicator.str.contains("Spend"),] +metadata = metadata[['Indicator ID', 'Indicator','Frequency','Year type','Unit','Value type','Polarity']] +metadata['profile_id'] = 155 + + +# 2) based on metadata from 1) we pull each indicator together with some metadata, +# appends all indicators and retrieve best and worst bounds + +alldatayears = [] +for index, row in metadata.iterrows(): + i = row['Indicator ID'] + j = row['profile_id'] + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=102, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=202, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=302, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=402, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + + # we add useful metadata into the dataset + df['unit'] = row['Unit'] + df['value_type'] = row['Value type'] + df['frequency'] = row['Frequency'] + df['year_type'] = row['Year type'] + df['polarity'] = row['Polarity'] + + # creates a unique ID based on indicator and area code + df['seriesCode'] = df['Indicator ID'].astype(str) + "_" + df['Area Code'].astype(str) + df['seriesName'] = df['Indicator Name'] + df['group'] = df['Category'].fillna('local_authority') + df['subgroup'] = df['Category Type'].fillna('local_authority') + + """ + # to de-duplicate for geographies we select all-gender and all-category data + df = df.loc[df['Category Type'].isna() & df['Parent Code'].notnull() & \ + (df['Sex'] == "Persons"),] + """ + + # to de-duplicate for deprivation levels activate these lines + #df = df.loc[df['Parent Code'].isna() & (df['Category Type'] == "General Practice deprivation deciles in England (IMD2010)") & \ + df = df.loc[~(df['Category Type'].isna()),] + df = df.loc[df['Parent Code'].isna()] + df = df.loc[df['Sex'] == "Persons",] + + # correct exception for indicator 91195 which is duplicated + if i == 91195: + df = df.loc[~df.Value.isna(),] + + assert df.duplicated(subset = ['seriesCode','Age','group','subgroup', \ + 'Time period Sortable','Time period range']).any() == False + + df = df[['seriesCode','seriesName','Age','group','subgroup', \ + 'Value', 'unit','value_type','polarity', \ + 'frequency','year_type','Time period Sortable','Time period range', \ + 'Indicator ID','Area Code']] + alldatayears.append(df) + +alldatayears = pd.concat(alldatayears) + +# polarity of the following indicators is stated as 'Not applicable' yet +# they should be inverted as their increase reflects a loss of wellbeing +toinvert = ['Cancer diagnosed at early stage (experimental statistics)', + 'Fraction of mortality attributable to particulate air pollution (old method)', + 'Chlamydia detection rate per 100,000 aged 15 to 24', + 'Number in treatment at specialist alcohol misuse services', + 'Re-offending levels - average number of re-offences per re-offender', + 'Domestic abuse related incidents and crimes', + 'Violent crime - violence offences per 1,000 population', + 'Violent crime - sexual offences per 1,000 population', + 'Re-offending levels - percentage of offenders who re-offend', + 'First time offenders', + 'Adults in treatment at specialist alcohol misuse services: rate per 1000 population', + 'Under 18s conceptions leading to abortion (%)', + 'Under 18s abortions rate / 1,000', + 'Adults in treatment at specialist drug misuse services: rate per 1000 population', + 'Adults with a learning disability who live in stable and appropriate accommodation', + 'Adults in contact with secondary mental health services who live in stable and appropriate accommodation', + 'Abortions under 10 weeks (%)', + 'Estimated diabetes diagnosis rate', + 'Gap in life expectancy at birth between each local authority and England as a whole'] + +# we generate the invert column based on the polarity column from metadata +alldatayears['invert'] = 0 +alldatayears.loc[(alldatayears.polarity == "RAG - Low is good ") | + (alldatayears.seriesName.isin(toinvert)),'invert'] = 1 + +# retrieve best and worst bounds based on data +max_value = alldatayears.groupby(['Indicator ID'], as_index = False, observed = True)['Value'].max().rename(columns = {'Value':'bestBound'}) +min_value = alldatayears.groupby(['Indicator ID'], as_index = False, observed = True)['Value'].min().rename(columns = {'Value':'worstBound'}) + +# retrieve first and last value of time series by deduplicating on key columns +start_value = alldatayears.loc[alldatayears.Value.notnull(),['seriesCode','seriesName','Age','subgroup', 'Time period range', 'Time period Sortable','Value']] +start_value = start_value.loc[~alldatayears.Value.isna(),['seriesCode','seriesName','Age','subgroup', 'Time period range','Time period Sortable','Value']] +start_value = start_value.sort_values(['seriesCode','seriesName','Age' ,'subgroup', 'Time period range','Time period Sortable']) +last_value = start_value.copy() +start_value = start_value.drop_duplicates(subset = ['seriesCode','seriesName','Age','subgroup', 'Time period range'], \ + keep = 'first').rename(columns = {'Value':'start_value'}) +last_value = last_value.drop_duplicates(subset = ['seriesCode','seriesName','Age','subgroup', 'Time period range'], \ + keep = 'last').rename(columns = {'Value':'end_value'}) + +# merge these columns onto the main database +alldatayears = alldatayears.merge(max_value, on = 'Indicator ID', validate = 'many_to_one') +alldatayears = alldatayears.merge(min_value, on = 'Indicator ID', validate = 'many_to_one') +alldatayears = alldatayears.merge(start_value, on = ['seriesCode','seriesName','Age' ,'subgroup', 'Time period range'], validate = 'many_to_one') +alldatayears = alldatayears.merge(last_value, on = ['seriesCode','seriesName','Age' ,'subgroup', 'Time period range'], validate = 'many_to_one') + +# adjust theoretical bounds for proportion (0,1) types of data +alldatayears.loc[alldatayears.value_type == "Percentage point",'worstBound'] = -100 +alldatayears.loc[alldatayears.value_type == "Percentage point",'bestBound'] = 100 + +# normalize initial and final values of the series +alldatayears['I0'] = (alldatayears.start_value - alldatayears.worstBound) / (alldatayears.bestBound - alldatayears.worstBound) +alldatayears['IF'] = (alldatayears.end_value - alldatayears.worstBound) / (alldatayears.bestBound - alldatayears.worstBound) + +# assume all indicators are instrumental +alldatayears['instrumental'] = 1 + +# create a flag for frequency +alldatayears['flag_non_annual'] = 1 +alldatayears.loc[alldatayears.frequency.str.contains("nnual") == True, + 'flag_non_annual'] = 0 +alldatayears.loc[alldatayears['Time period range'] == '1y', + 'flag_non_annual'] = 0 +alldatayears.loc[alldatayears.year_type == 'Financial', + 'flag_non_annual'] = 0 + +# pivot wide on years +#alldatayears = alldatayears.drop_duplicates(subset = ['seriesCode','seriesName', \ + # 'Area Code', 'Indicator ID', 'invert','instrumental','flag_non_annual', + # 'bestBound','worstBound','Time period Sortable']) + +data = pd.pivot(alldatayears, index = ['seriesCode','seriesName','Age' ,'subgroup', 'Time period range', \ + 'Area Code', 'Indicator ID','I0','IF', \ + 'invert','bestBound','worstBound','instrumental','flag_non_annual'], \ + columns = 'Time period Sortable', + values = 'Value').reset_index() + +# FIXME: Deduplicate by time period range +# We add SPOT categories which match to expenditure/budget +categories = pd.read_csv('c:/users/giselara/Documents/he/output/england/spot_indicator_mapping_table.csv', encoding = 'unicode_escape') +categories = categories.loc[categories.type == "Outcome",['category','name']].rename(columns = {'name':'seriesName'}).drop_duplicates() +data = data.merge(categories, on = 'seriesName', validate = 'many_to_many', how = 'outer') + + +# 3) format columns for PPI +years = [column_name for column_name in data.columns if str(column_name).isnumeric()] + +# 3a) Exclude indicators with fewer than 5 datapoints +data['count_valid'] = data[years].notnull().sum(axis = 'columns') +data = data.loc[(data.count_valid > 4),] + +# 3b) Normalise values +normalised_series = [] +for index, row in data.iterrows(): + time_series = row[years].values + count_valid = len([x for x in normalised_serie if not isnan(x)]) + if count_valid > 4: + normalised_serie = (time_series - row.worstBound)/(row.bestBound - row.worstBound) + if row.invert == 1: + final_serie = 1 - normalised_serie + else: + final_serie = normalised_serie + + # initial_value = next(x for x in normalised_serie if not isnan(x)) + # final_value = next(x for x in reversed(normalised_serie) if not isnan(x)) + # nvalue = [initial_value, final_value] + normalised_series.append( final_serie ) + # nvalues.append(nvalue) + +df = pd.DataFrame(normalised_series, columns=years) + + +# 3.b) Normalise the theoretical bounds and add all the other columns +df['seriesCode'] = data.seriesCode +df['seriesName'] = data.seriesName +df['minVals'] = np.zeros(len(data)) +df['maxVals'] = np.ones(len(data)) +df['I0'] = data.I0 +df['IF'] = data.IF +df['instrumental'] = data.instrumental +df['sdg'] = data.category + +colour_dict = {"Central": "#A21942", "Child Health": "#FD9D24", "Cultural": "#FF3A21", "Drugs and Alcohol": "#E5243B", "Education": "#DDA63A", "Env & Reg": "#4C9F38", "Health Improvement": "#C5192D", "Health Protection": "#26BDE2", "Healthcare": "#FCC30B", "Highways": "#FD6925", "Housing": "#BF8B2E", "Mental Health": "#3F7E44", "Planning": "#0A97D9", "Public Health": "#56C02B", "Sexual Health": "#00689D", "Social Care - Adults": "#19486A", "Social Care - Child": "#19486A", "Tobacco Control": "#E5243B"} +df['colour'] = df.sdg.map(colour_dict) + +#Building new variables +successRates = np.sum(df[years].values[:,1::] > df[years].values[:,0:-1], axis=1)/(len(years)-1) + +# if a success rate is 0 or 1, it is recommended to replace them by a very low or high value as +# zeros and ones are usually an artifact of lacking data on enough policy trials in the indicator +successRates[successRates==0] = .05 +successRates[successRates==1] = .95 +df['successRates'] = successRates + +###development gaps +df.loc[df.I0==df.IF, 'IF'] = df.loc[df.I0==df.IF, 'IF']*1.05 + +#governance paramenters +df['qm'] = 0.5 # quality of monitoring +df['rl'] = 0.5 # quality of the rule of law + + +# export data to model ppi.py +df.to_csv(outputpath + 'clean_data/data_indicators.csv') \ No newline at end of file diff --git a/wales/ftp/1b_interdependency_network.py b/wales/ftp/1b_interdependency_network.py new file mode 100644 index 0000000..37229f2 --- /dev/null +++ b/wales/ftp/1b_interdependency_network.py @@ -0,0 +1,112 @@ +""" +Modified Feb 17 2023 +# This script aims to : + 1) retreieve metadata and data from fingertips by indicators, + 2) construct a matrix with pairwise Pearson correlations + 3) filter edges weighting lower than 0.5 + 4) save the network using indicators' ids +""" +# Install fingertips with pip install fingertips_py + +# 0) import libraries, define paths +import pandas as pd +import numpy as np +import fingertips_py as ftp +home = "~/" # add path acordingly +output_path = home + "output/england/" + +# 1a) Retrieve some useful metadata from SPOT profile +metadata = ftp.get_metadata_for_profile_as_dataframe(155) +metadata = metadata.loc[~metadata.Indicator.str.contains("Spend"),] +metadata = metadata[['Indicator ID', 'Indicator','Frequency','Year type','Unit','Value type','Polarity']] +metadata['profile_id'] = 155 + +# 1b) based on metadata from 1) we pull each expenditure together with some metadata, +# appends all indicators and retrieve best and worst bounds +alldatayears = [] +for index, row in metadata.iterrows(): + i = row['Indicator ID'] + j = row['profile_id'] + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=102, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=202, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=302, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=402, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + + # creates a unique ID based on indicator and area code + df['seriesCode'] = df['Indicator ID'].astype(str) + "_" + df['Area Code'].astype(str) + df['seriesName'] = df['Indicator Name'] + df['group'] = df['Category'].fillna('local_authority') + df['subgroup'] = df['Category Type'].fillna('local_authority') + + """ + # to de-duplicate for geographies we select all-gender and all-category data + df = df.loc[df['Category Type'].isna() & df['Parent Code'].notnull() & \ + (df['Sex'] == "Persons"),] + """ + + # to de-duplicate for deprivation levels activate these lines + #df = df.loc[df['Parent Code'].isna() & (df['Category Type'] == "General Practice deprivation deciles in England (IMD2010)") & \ + df = df.loc[~(df['Category Type'].isna()),] + df = df.loc[df['Parent Code'].isna()] + df = df.loc[df['Sex'] == "Persons",] + + # correct exception for indicator 91195 which is duplicated + if i == 91195: + df = df.loc[~df.Value.isna(),] + + assert df.duplicated(subset = ['seriesCode','Age','group','subgroup', \ + 'Time period Sortable','Time period range']).any() == False + + df = df[['seriesCode','seriesName','Age','group','subgroup', \ + 'Value', 'Time period Sortable','Time period range', \ + 'Indicator ID','Area Code']] + + alldatayears.append(df) + +data = pd.concat(alldatayears) + +# pivot wide on years +data = pd.pivot(data, index = ['seriesCode','seriesName','Age','group','subgroup', 'Time period range', \ + 'Area Code', 'Indicator ID'], columns = 'Time period Sortable', \ + values = 'Value').reset_index() #.fillna(0) +#data = data.loc[data['Area Code']=="E92000001",] +#data=pd.read_csv('c:/users/giselara/Documents/he/output/england/test.csv') +# 2) Construct pairwise Pearson correlations matrix, +# directionality is from row to column. +N = len(data) +M = np.zeros((N, N)) +years = [column_name for column_name in data.columns if str(column_name).isnumeric()] + +for i, rowi in data.iterrows(): + for j, rowj in data.iterrows(): + if i!=j: + serie1 = rowi[years].values.astype(float)[1::] + serie2 = rowj[years].values.astype(float)[0:-1] + change_serie1 = serie1[1::] - serie1[0:-1] + change_serie2 = serie2[1::] - serie2[0:-1] + if not np.all(change_serie1 == change_serie1[0]) and not np.all(change_serie2 == change_serie2[0]): + M[i,j] = np.corrcoef(change_serie1, change_serie2)[0,1] + +# 3) Filter edges that have a weight of magnitude lower than 0.5 + +M[np.abs(M) < 0.5] = 0 + +# 4) Save the network as a list of edges using the indicators' ids + +ids = data.seriesCode.values +edge_list = [] +for i, j in zip(np.where(M!=0)[0], np.where(M!=0)[1]): + edge_list.append( [ids[i], ids[j], M[i,j]] ) +df = pd.DataFrame(edge_list, columns=['origin', 'destination', 'weight']) +df.to_csv('c:/users/giselara/Documents/he/output/england/data_network.csv', index=False) \ No newline at end of file diff --git a/wales/ftp/1c_expenditure_england.py b/wales/ftp/1c_expenditure_england.py new file mode 100644 index 0000000..30939b4 --- /dev/null +++ b/wales/ftp/1c_expenditure_england.py @@ -0,0 +1,127 @@ +# -*- coding: utf-8 -*- +""" +Modified Feb 17 2023 +# This script aims to : + 1) retreieves metadata and data on expenditure from fingertips, + 2) checks the budget categories for which at least an indicator was retrieved + 3) format wide timeseries and creates columns needed for ppi +""" +# Install fingertips with pip install fingertips_py + +# 0) import libraries, define paths +import pandas as pd +import numpy as np +import fingertips_py as ftp +home = "~/" # add path acordingly +output_path = home + "output/england/" + +# read indicators data +data_indi = pd.read_csv('C:/Users/giselara/Documents/he/output/england/data_indicators.csv') +# spot profiles +metadata = ftp.get_metadata_for_profile_as_dataframe(155) +metadata = metadata.loc[metadata.Indicator.str.contains("Spend"),] +metadata = metadata[['Indicator ID', 'Indicator','Year type','Unit','Value type','Frequency']] +metadata['profile_id'] = 155 +# please note that the following are constant throughtout the data: Unit = £, Value type=Count, Year type = financial, Polarity = BOB + +# 2) based on metadata from 1) we pull each expenditure together with some metadata, +# appends all indicators and retrieve best and worst bounds +allexpenditure = [] +for index, row in metadata.iterrows(): + i = row['Indicator ID'] + j = row['profile_id'] + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=102, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=202, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=302, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + if df.empty == True: + df = ftp.retrieve_data.get_data_by_indicator_ids(indicator_ids=i, + area_type_id=402, parent_area_type_id=15, profile_id=j, + include_sortable_time_periods=1, is_test=False) + + # we add useful metadata into the dataset + df['unit'] = row['Unit'] + df['value_type'] = row['Value type'] + df['frequency'] = row['Frequency'] + df['year_type'] = row['Year type'] + + # creates a unique ID based on indicator and area code + df['seriesCode'] = df['Indicator ID'].astype(str) + "_" + df['Area Code'].astype(str) + df['seriesName'] = df['Indicator Name'] + + # duplication is not an issue at geography-level spend data + assert df.duplicated(subset = ['seriesCode','Time period Sortable']).any() == False + + df = df[['seriesCode','seriesName','Value', 'unit','value_type','frequency',\ + 'year_type','Time period Sortable', 'Indicator ID','Area Code']] + + allexpenditure.append(df) + +data_exp = pd.concat(allexpenditure) + +# We add SPOT categories which match to expenditure/budget +categories = pd.read_csv('c:/users/giselara/Documents/he/output/england/spot_indicator_mapping_table.csv', encoding = 'unicode_escape') +categories = categories.loc[categories.type == "Spend",['category','name']].rename(columns = {'name':'seriesName'}).drop_duplicates() +#categories['seriesName'] = categories.name.str.slice(7,) +data_exp = data_exp.merge(categories, on = 'seriesName', validate = 'many_to_many', how = 'outer') + +data_exp['sdg'] = data_exp.category +sdg_dict = {"Central": "#A21942", "Child Health": "#FD9D24", "Cultural": "#FF3A21", "Drugs and Alcohol": "#E5243B", "Education": "#DDA63A", "Env & Reg": "#4C9F38", "Health Improvement": "#C5192D", "Health Protection": "#26BDE2", "Healthcare": "#FCC30B", "Highways": "#FD6925", "Housing": "#BF8B2E", "Mental Health": "#3F7E44", "Planning": "#0A97D9", "Public Health": "#56C02B", "Sexual Health": "#00689D", "Social Care - Adults": "#19486A", "Social Care - Child": "#19486A", "Tobacco Control": "#E5243B"} +data_exp['colour'] = data_exp.sdg.map(sdg_dict) + + +# 2) We check which budget categories had at least an indicator retrieved +data_exp = data_exp[data_exp.category.isin(data.category.values)] +data_exp = data_exp[data_exp.category.isin(data[data.instrumental==1].category.values)] + +# pivot wide on years +data_exp = pd.pivot(data_exp_or, index = ['seriesCode','seriesName', 'Indicator ID', \ + 'Area Code', 'category','sdg','colour'], columns = 'Time period Sortable', \ + values = 'Value').reset_index().fillna(-1) + +#data_exp = pd.read_csv('https://raw.githubusercontent.com/oguerrer/ppi/main/tutorials/raw_data/raw_expenditure.csv') + +# 3) Assembly disbursment matrix +years = [column_name for column_name in data_exp.columns if str(column_name).isnumeric()] +periods = len(years) +T = 69 +t = round(T/periods) + +new_rows = [] +for index, row in data_exp.iterrows(): + new_row = [row['seriesCode'], row['Area Code'], row.category] + for year in years: + new_row += [int(row[year]) for i in range(t)] + new_rows.append(new_row) + +df_exp = pd.DataFrame(new_rows, columns=['seriesCode','Area Code','category']+list(range(T+1))) + +is_instrumental = dict(zip(data_indi['seriesCode'], data_indi.instrumental==1)) + +rel_dict = dict([(code, []) for code in data_indi.seriesCode if is_instrumental[code]]) +for index, row in data_indi.iterrows(): + if row.seriesCode in rel_dict: + rel_dict[row.seriesCode].append(row.category+"_"+row['Area Code']) +# rel_dict.append(row['Area Code']) + +n_cols = max([len(value) for value in rel_dict.values()]) + +M = [['' for i in range(n_cols+1)] for code in rel_dict.values()] +for i, items in enumerate(rel_dict.items()): + sdg, indis = items + M[i][0] = sdg + for j, indi in enumerate(indis): + M[i][j+1] = indi + +df_rel = pd.DataFrame(M, columns=['seriesCode']+list(range(n_cols))) + + +df_exp.to_csv('clean_data/data_expenditure.csv', index=False) +df_rel.to_csv('clean_data/data_relational_table.csv', index=False) \ No newline at end of file diff --git a/wales/ftp/2_model_calibration.py b/wales/ftp/2_model_calibration.py new file mode 100644 index 0000000..5089afa --- /dev/null +++ b/wales/ftp/2_model_calibration.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +""" +# This script aims to : + 1) Load cleaned indicators data from step 1a), + 2) load interdependency network from step 1b), + 3) filter edges weighting lower than 0.5 + 4) save the network using indicators' ids +""" + +# 0) import libraries, define paths +import pandas as pd +import numpy as np +home = "~/" # add path acordingly +output_path = home + "output/england/" + +import requests +url = 'https://raw.githubusercontent.com/oguerrer/ppi/main/source_code/ppi.py' +r = requests.get(url) +with open('ppi.py', 'w') as f: + f.write(r.text) +import ppi as ppi + +df_indis = pd.read_csv(outpath + 'clean_data/data_indicators.csv') +df_indis = pd.read_csv('c:/users/giselara/Documents/he/output/england/data_indicators.csv') +df_indis = df_indis.loc[df_indis.I0.notnull(),] +df_indis = df_indis.loc[df_indis.IF.notnull(),] + +N = len(df_indis) +I0 = df_indis.I0.values # initial values +IF = df_indis.IF.values # final values +success_rates = df_indis.successRates.values # success rates +R = df_indis.instrumental # instrumental indicators +qm = df_indis.qm.values # quality of monitoring +rl = df_indis.rl.values # quality of the rule of law +indis_index = dict([(code, i) for i, code in enumerate(df_indis.seriesCode)]) # used to build the network matrix + +# 2) to load interdependency network from step 2b) +df_net = pd.read_csv(outpath + 'clean_data/data_network.csv') +A = np.zeros((N, N)) # adjacency matrix +for index, row in df_net.iterrows(): + i = indis_index[row.origin] + j = indis_index[row.destination] + w = row.weight + A[i,j] = w + +df_exp = pd.read_csv('c:/users/giselara/Documents/he/output/england/data_expenditure.csv') + +Bs = df_exp.values[:,1::] # disbursement schedule (assumes that the expenditure programmes are properly sorted) + +df_rela = pd.read_csv('c:/users/giselara/Documents/he/output/england/data_relational_table.csv') + +B_dict = {} +for index, row in df_rela.iterrows(): + B_dict[indis_index[row.seriesCode]] = [programme for programme in row.values[1::][row.values[1::].astype(str)!='nan']] + +T = Bs.shape[1] +parallel_processes = 4 # number of cores to use +threshold = 0.6 # the quality of the calibration (maximum is near to 1, but cannot be exactly 1) +low_precision_counts = 50 # number of low-quality evaluations to accelerate the calibration + +parameters = calibrate(I0, IF, success_rates, R=R, qm=qm, rl=rl, Bs=Bs, B_dict=B_dict, + T=T, threshold=threshold, verbose=True, + low_precision_counts=low_precision_counts) + +df_params = pd.DataFrame(parameters[1::], columns=parameters[0]) diff --git a/wales/indicators_description.csv b/wales/indicators_description.csv new file mode 100644 index 0000000..88abc91 --- /dev/null +++ b/wales/indicators_description.csv @@ -0,0 +1,458 @@ +"code","itemname","Dataset","Description" +"1","The number of enquiries that trigger an assessment that started during the year","care0013","Adults assessed and care plans reviewed during the year" +"2","Total enquiries during the year","care0013","Adults assessed and care plans reviewed during the year" +"3","Total number of working days between initial enquiry and care plan completion for all new care plans completed during the year","care0013","Adults assessed and care plans reviewed during the year" +"4","Total number of new care plans completed during the year","care0013","Adults assessed and care plans reviewed during the year" +"7","The number of clients with a care plan at 31 March who had their care plan reviewed as required during the year","care0013","Adults assessed and care plans reviewed during the year" +"8","The number of clients with a care plan at 31 March that should have been reviewed during the year","care0013","Adults assessed and care plans reviewed during the year" +"9","The number of adults assessed during the year who are provided with electronic assistive technology as part of a package of care","care0013","Adults assessed and care plans reviewed during the year" +"10","The number of adults assessed during the year","care0013","Adults assessed and care plans reviewed during the year" +"11","Number of carers identified who were offered an assessment during the year","care0013","Adults assessed and care plans reviewed during the year" +"12","Number of carers identified who had an assessment during the year","care0013","Adults assessed and care plans reviewed during the year" +"13","Number of carers identified who had an assessment in their own right during the year","care0013","Adults assessed and care plans reviewed during the year" +"14","Number of carers identified who were assessed who were provided with a service","care0013","Adults assessed and care plans reviewed during the year" +"15","Number of carers identified who are awaiting an assessment at the end of the year","care0013","Adults assessed and care plans reviewed during the year" +"16","Number of carers identified during the year","care0013","Adults assessed and care plans reviewed during the year" +"5","Total number of working days between initial enquiry and care plan completion for all new care plans completed during the year, including specialist assessments","care0013","Adults assessed and care plans reviewed during the year" +"6","Total number of working days between initial enquiry and care plan completion for all new care plans completed during the year, excluding specialist assessments","care0013","Adults assessed and care plans reviewed during the year" +"17","The number of carers of adults who were offered an assessment or review of their needs in their own right during the year","care0013","Adults assessed and care plans reviewed during the year" +"18","The number of carers of adults","care0013","Adults assessed and care plans reviewed during the year" +"19","The number of carers of adults who had an assessment or review of their needs in their own right during the year","care0013","Adults assessed and care plans reviewed during the year" +"20","The number of carers of adults who were assessed or re-assessed in their own right during the year who were provided with a service","care0013","Adults assessed and care plans reviewed during the year" +"21","The number of new carers of adults who are awaiting an assessment in their own right at the end of the year","care0013","Adults assessed and care plans reviewed during the year" +"22","The number of new carers of adults","care0013","Adults assessed and care plans reviewed during the year" +"14","The total number of working days taken to complete all initial assessments where the number of working days was more than 7","care0020","Children's services: Care plan/assessments summary" +"1","The total number of referrals received during the year","care0020","Children's services: Care plan/assessments summary" +"2","Number of referrals during the year that were re-referrals","care0020","Children's services: Care plan/assessments summary" +"3","Number of all referrals during the year where the child had been on the CPR or who had been looked after during the previous 12 month period","care0020","Children's services: Care plan/assessments summary" +"4","The number of referrals during the year on which a decision was made within 1 working day","care0020","Children's services: Care plan/assessments summary" +"5","The number of referrals received during the year where the decision was to proceed to an initial assessment","care0020","Children's services: Care plan/assessments summary" +"6","The number of referrals that were allocated to a social worker for initial assessment during the year","care0020","Children's services: Care plan/assessments summary" +"7","The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020","Children's services: Care plan/assessments summary" +"8","The number of initial assessments that were completed during the year","care0020","Children's services: Care plan/assessments summary" +"9","The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020","Children's services: Care plan/assessments summary" +"10","The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020","Children's services: Care plan/assessments summary" +"11","The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020","Children's services: Care plan/assessments summary" +"12","The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020","Children's services: Care plan/assessments summary" +"13","The number of initial assessments completed in fewer than 8 working days","care0020","Children's services: Care plan/assessments summary" +"15","The total number of initial assessments that took longer than 7 working days to complete","care0020","Children's services: Care plan/assessments summary" +"16","The number of initial assessments taking place during the year where ethnicity is recorded","care0020","Children's services: Care plan/assessments summary" +"17","The number of initial assessments taking place during the year where religion is recorded","care0020","Children's services: Care plan/assessments summary" +"18","The number of initial assessments taking place during the year where first language choice is recorded","care0020","Children's services: Care plan/assessments summary" +"21","The number of core assessments that were required during the year","care0020","Children's services: Care plan/assessments summary" +"22","The number of required core assessments completed in fewer than 36 working days during the year","care0020","Children's services: Care plan/assessments summary" +"23","The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020","Children's services: Care plan/assessments summary" +"24","The total number of required core assessments that took longer than 35 working days to complete","care0020","Children's services: Care plan/assessments summary" +"25","The number of young carers known to Social Services during the year","care0020","Children's services: Care plan/assessments summary" +"26","The number of young carers known to Social Services who were assessed during the year","care0020","Children's services: Care plan/assessments summary" +"27","The number of young carers known to Social Services who were provided with a service during the year","care0020","Children's services: Care plan/assessments summary" +"33","The number of health assessments for looked after children due in the year that have been undertaken","care0020","Children's services: Care plan/assessments summary" +"34","The number of health assessments for looked after children due to be undertaken in the year","care0020","Children's services: Care plan/assessments summary" +"28","The number of referrals that did not proceed to allocation for initial assessment during the year","care0020","Children's services: Care plan/assessments summary" +"29","Required core assessments that have not yet been completed during the year","care0020","Children's services: Care plan/assessments summary" +"30","Required core assessments that have not yet been completed from previous periods","care0020","Children's services: Care plan/assessments summary" +"31","Required initial assessments that have not yet been completed during the year","care0020","Children's services: Care plan/assessments summary" +"32","Required initial assessments that have not yet been completed from previous periods","care0020","Children's services: Care plan/assessments summary" +"35","The number of initial assessments completed within 7 working days","care0020","Children's services: Care plan/assessments summary" +"36","The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020","Children's services: Care plan/assessments summary" +"37","The total number of initial assessments that took 8 days or more to complete","care0020","Children's services: Care plan/assessments summary" +"38","The number of required core assessments completed within 35 working days during the year","care0020","Children's services: Care plan/assessments summary" +"39","The number of core assessments that were completed during the year","care0020","Children's services: Care plan/assessments summary" +"40","The number of initial assessments that were completed during the year where the child has not been seen","care0020","Children's services: Care plan/assessments summary" +"3","The total number of weeks which children spent in local authority foster care or placed for adoption (part of total for 903 placement codes) during the year","care0027","Children's services: Continued care summary" +"2","The gross expenditure on children looked after in local authority foster care","care0027","Children's services: Continued care summary" +"4","The gross expenditure on children looked after in externally purchased foster care","care0027","Children's services: Continued care summary" +"5","The total number of weeks which children spent in externally purchased foster care (SSDA 903 placement codes) during the year","care0027","Children's services: Continued care summary" +"6","The total number of weeks which children spent in externally purchased children’s homes (part of total for 903 placement codes) during the year","care0027","Children's services: Continued care summary" +"7","The gross expenditure on children looked after in local authority children’s homes","care0027","Children's services: Continued care summary" +"9","The gross expenditure on children looked after in externally purchased children's homes","care0027","Children's services: Continued care summary" +"8","The total number of weeks which children spent in local authority children's homes (part of total for 903 placement codes) during the year","care0027","Children's services: Continued care summary" +"10","The gross expenditure on children looked after in secure accommodation","care0027","Children's services: Continued care summary" +"11","The total number of weeks which children spent in secure accommodation (part of total for 903 placement codes) during the year","care0027","Children's services: Continued care summary" +"21","Young people aged 19 who were looked after when aged 16","care0027","Children's services: Continued care summary" +"1","Number of children that become looked after during the year and are still looked after at 31 March","care0027","Children's services: Continued care summary" +"12","Number of children that become looked after during the year and are still looked after at 31 March who are placed at a distance less than 20 miles from their home address","care0027","Children's services: Continued care summary" +"13","Number of children and young people with disabilities who are receiving a service at 31 March","care0027","Children's services: Continued care summary" +"14","Number of children and young people with disabilities who are receiving a service who are receiving direct payments at 31 March","care0027","Children's services: Continued care summary" +"15","Number of children aged 4-5 years at 31 March who had been looked after for at least four years","care0027","Children's services: Continued care summary" +"16","The number of children aged 4-5 years at 31 March who have been looked after continuously for at least 4 years and in their foster placement for at least 2 years","care0027","Children's services: Continued care summary" +"17","Number of children aged 6-10 years at 31 March who had been looked after for at least four years","care0027","Children's services: Continued care summary" +"18","The number of children aged 6-10 years at 31 March who have been looked after continuously for at least 4 years and in their foster placement for at least 2 years","care0027","Children's services: Continued care summary" +"19","Number of children looked after aged 11 years and over at 31 March who had been looked after for at least four years","care0027","Children's services: Continued care summary" +"20","The number of children aged 11 years and over at 31 March who have been looked after continuously for at least 4 years and in their foster placement for at least 2 years","care0027","Children's services: Continued care summary" +"22","Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027","Children's services: Continued care summary" +"23","Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027","Children's services: Continued care summary" +"24","Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027","Children's services: Continued care summary" +"25","Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027","Children's services: Continued care summary" +"26","Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027","Children's services: Continued care summary" +"27","Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027","Children's services: Continued care summary" +"28","Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027","Children's services: Continued care summary" +"1","Nights of respite care provided in Local Authority care homes","care0007","Nights of respite care during the year" +"2","Nights of respite care provided in Independent sector care homes under contract","care0007","Nights of respite care during the year" +"3","Nights of respite care provided in Independent sector care homes under contract, receiving nursing care","care0007","Nights of respite care during the year" +"2","Number hours of homecare provided to clients during the last full week in September (count client hours)","care0008","Hours of homecare during the sample week" +"3","Number hours of homecare provided to clients during the last full week in September (count staff hours)","care0008","Hours of homecare during the sample week" +"1","Number of clients receiving homecare during the last full week in September (count clients)","care0008","Hours of homecare during the sample week" +"2","Hours of homecare provided by the independent sector under contract","care0009","Homecare provided during the year" +"1","Hours of homecare provided by the local authority","care0009","Homecare provided during the year" +"4","Adaptations to property","care0009","Homecare provided during the year" +"3","Other personal equipment","care0009","Homecare provided during the year" +"13","Total","care0012","Delayed transfers of care due to social care reasons" +"2","May","care0012","Delayed transfers of care due to social care reasons" +"3","June","care0012","Delayed transfers of care due to social care reasons" +"4","July","care0012","Delayed transfers of care due to social care reasons" +"5","August","care0012","Delayed transfers of care due to social care reasons" +"7","October","care0012","Delayed transfers of care due to social care reasons" +"10","January","care0012","Delayed transfers of care due to social care reasons" +"12","March","care0012","Delayed transfers of care due to social care reasons" +"1","April","care0012","Delayed transfers of care due to social care reasons" +"6","September","care0012","Delayed transfers of care due to social care reasons" +"8","November","care0012","Delayed transfers of care due to social care reasons" +"9","December","care0012","Delayed transfers of care due to social care reasons" +"11","February","care0012","Delayed transfers of care due to social care reasons" +"1","In touch","care0051","Care leavers on their 19th birthday, by accommodation and activity, year ending 31 March" +"2","Not in touch","care0051","Care leavers on their 19th birthday, by accommodation and activity, year ending 31 March" +"99","All","care0051","Care leavers on their 19th birthday, by accommodation and activity, year ending 31 March" +"00","Not applicable","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"FF","Young person engaged full time in education, training or employment","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"GG","Young person engaged in education, training or employment","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"NN","Young person not in education, employment or training","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"P1","Young person engaged part time in education, training or employment","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"XX","Unknown","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"ZZ","All","care0052","Care leavers on their 19th birthday, by activity, year ending 31 March" +"1","Number of adults who paid the maximum weekly charge towards the cost of care and support or support for carers during the year","care0119","Adults charged for care and support by local authority and measure" +"2","Number of adults who paid a flat rate charge for care and support or support for carers during the year","care0119","Adults charged for care and support by local authority and measure" +"1","Domiciliary care","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"2","Day Care","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"3","Respite Care","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"4","Reablement","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"5","Equipment","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"6","Adaptations","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"7","Direct Payments","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"8","Supported Accommodation","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"9","Sheltered Accommodation","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"10","Adult Placements","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"11","Adult care home (without nursing)","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"12","Adult care homes with nursing","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"13","Telecare","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"14","Advocacy","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"15","Recreational, leisure and lifelong learning opportunities","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"16","Other","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"17","Total of services (volume)","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"18","Total number of adults supported (count)","care0120","Number of adults charged for care and support or support during the year ending 31 March, by local authority, age group and data item" +"PC_ParSubAlc","Parental substance of alcohol misuse","care0143","Parental factors of children receiving care and support by measure and year, year ending 31 March" +"PC_ParLrnDis","Parental learning disabilities","care0143","Parental factors of children receiving care and support by measure and year, year ending 31 March" +"PC_ParMentIll","Parental mental ill health","care0143","Parental factors of children receiving care and support by measure and year, year ending 31 March" +"PC_ParPhysIll","Parental physical ill health","care0143","Parental factors of children receiving care and support by measure and year, year ending 31 March" +"PC_ParDomAb","Domestic abuse","care0143","Parental factors of children receiving care and support by measure and year, year ending 31 March" +"YthOff","Percentage of children with a case open to the Youth Offending Team","care0144","Youth offending of children receiving care and support by measure and year, year ending 31 March" +"Ed_Abs_Auth","Authorised absence rate","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"Ed_Abs_Unauth","Unauthorised absence rate","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"Ed_Attend","Attendance rate","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"Ed_PLASC_FSM","Percentage of children with eligibilty for free school meals","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"Ed_PLASC_SEN_AP","Percentage of children with special educational needs subject to school action or school action plus","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"Ed_PLASC_SEN_S","Percentage of children with a statement of special educational needs","care0145","Education of children receiving care and support at 31 March by child status, gender and local authority" +"CINPerPop","Children receiving care and support at 31 March per 10,000 population aged under 18","care0146","Children receiving care and support at 31 March per 10,000 population aged under 18 by local authority" +"1","Neglect","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"2","Physical abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"3","Sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"4","Emotional / Psychological abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"5","Neglect and Physical abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"6","Neglect and Sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"7","Physical abuse and Sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"8","Neglect, Physical abuse, and Sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"9","Financial abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"10","Neglect, physical abuse, sexual abuse and financial abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"11","Neglect, physical abuse and financial abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"12","Neglect, sexual abuse and financial abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"13","Financial abuse, physical abuse and sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"14","Neglect and financial abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"15","Financial abuse and physical abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"16","Financial abuse and sexual abuse","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"99","Total","care0147","Children receiving care and support on the Child Protection Register by local authority, category of abuse and gender" +"0001","Under 1 year","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"0099","All Ages","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"0104","1 to 4 years","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"0509","5 to 9 years","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"1015","10 to 15 years","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"1699","16 years and over","care0150","Immunisations of children receiving care and support at 31 March by age and looked after status" +"0","Children receiving care and support, but not looked after, and not on the child protection register at 31st March","care0151","Mental health status of children receiving care and support by local authority and measure" +"1","Children on the child protection register, but not looked after at 31st March","care0151","Mental health status of children receiving care and support by local authority and measure" +"2","Children looked after at 31 March","care0151","Mental health status of children receiving care and support by local authority and measure" +"99","All children receiving care and support","care0151","Mental health status of children receiving care and support by local authority and measure" +"0","Children receiving care and support, but not looked after, and not on the child protection register at 31st March","care0152","Substance misuse status of children receiving care and support by local authority and measure" +"1","Children on the child protection register, but not looked after at 31st March","care0152","Substance misuse status of children receiving care and support by local authority and measure" +"2","Children looked after at 31 March","care0152","Substance misuse status of children receiving care and support by local authority and measure" +"99","All children receiving care and support","care0152","Substance misuse status of children receiving care and support by local authority and measure" +"Ed_KS1_CSI","Percentage of children achieving the core subject indicator at key stage 1","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_5AC","Percentage of children achieving 5 or more GCSE passes at A*-C","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_5AG","Percentage of children achieving 5 or more GCSE passes at A*-G","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS5_L3","Percentage of children achieving the level 3 threshold at key stage 5","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS5_Points","Average wider points score at key stage 5","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_CSI","Percentage of children achieving the core subject indicator at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_L2","Percentage of children achieving the level 2 threshold at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_L2_EWM","Percentage of children achieving the level 2 threshold including English/Welsh and Mathematics at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_FPI","Percentage of children achieving the foundation phase indicator","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_CapPts","Average capped points score at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_Points","Average wider points score at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS2_CSI","Percentage of children achieving the core subject indicator at key stage 2","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS3_CSI","Percentage of children achieving the core subject indicator at key stage 3","care0153","Educational attainment of children receiving care and support by measure and year" +"Ed_KS4_L1","Percentage of children achieving the level 1 threshold at key stage 4","care0153","Educational attainment of children receiving care and support by measure and year" +"0","Children receiving care and support, but not looked after, and not on the child protection register at 31st March","care0157","Children receiving care and support by asylum seeker status, gender and looked after status" +"1","Children on the child protection register, but not looked after at 31st March","care0157","Children receiving care and support by asylum seeker status, gender and looked after status" +"2","Children looked after at 31 March","care0157","Children receiving care and support by asylum seeker status, gender and looked after status" +"99","All children receiving care and support","care0157","Children receiving care and support by asylum seeker status, gender and looked after status" +"0001","Under 1 year","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"0104","1 to 4 years","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"0509","5 to 9 years","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"1015","10 to 15 years","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"1699","16 years and over","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"0099","All Ages","care0136","Children receiving care and support at 31 March by age group, gender, looked after status and ethnicity" +"0","Children receiving care and support, but not looked after, and not on the child protection register at 31st March","care0137","Children receiving care and support at 31 March by looked after status, category of need and disability" +"1","Children on the child protection register, but not looked after at 31st March","care0137","Children receiving care and support at 31 March by looked after status, category of need and disability" +"2","Children looked after at 31 March","care0137","Children receiving care and support at 31 March by looked after status, category of need and disability" +"99","All children receiving care and support","care0137","Children receiving care and support at 31 March by looked after status, category of need and disability" +"0","Children receiving care and support, but not looked after, and not on the child protection register at 31st March","care0139","Dental checks of children receiving care and support aged 5 and over at 31 March, by looked after status" +"1","Children on the child protection register, but not looked after at 31st March","care0139","Dental checks of children receiving care and support aged 5 and over at 31 March, by looked after status" +"2","Children looked after at 31 March","care0139","Dental checks of children receiving care and support aged 5 and over at 31 March, by looked after status" +"99","All children receiving care and support","care0139","Dental checks of children receiving care and support aged 5 and over at 31 March, by looked after status" +"Dis","Percentage of children with a disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_Mob","Percentage of children with a mobility disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_ManDex","Percentage of children with a manual dexterity disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_PhysCoord","Percentage of children with a physical co-ordination disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_Cont","Percentage of children with a continence disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_LiftCarry","Percentage of children unable to lift, carry or otherwise move everyday objects","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_SpkHearSee","Percentage of children with a speech, hearing and eye sight disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_Mem","Percentage of children with a memory disability","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Dis_PerRiskDang","Percentage of children unable to perceive the risk of physical danger","care0141","Disabilities of children receiving care and support at the 31 March, by measure and year" +"Hlth_Imm","Percentage of children with up-to-date immunisations","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"Hlth_Dent","Percentage of children with up-to-date dental checks (for children aged 5 and over)","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"Hlth_SubMis","Percentage of children with substance misuse problems (for children aged 10 and over)","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"Hlth_Ment","Percentage of children with mental health problems (for children aged 10 and over)","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"Hlth_CHSC","Percentage of children with up-to-date child health surveillance checks (for children aged 0 to 5)","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"Hlth_ASD","Percentage of children with autistic spectrum disorder","care0142","Health of children receiving care and support by measure and year, year ending 31 March" +"N1","Abuse or neglect","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N2","Disability","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N3","Parental illness or disability","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N4","Family in acute stress","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N5","Family dysfunction","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N6","Socially Unacceptable Behaviour","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N8","Absent Parenting (including child given up for adoption)","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N9","Adoption disruption","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"ZZ","Total children starting to be looked after by need for care","care0038","Children starting to be looked after by local authorities, by need for care, year ending 31 March" +"N2","Disability","care0041","Short breaks for children looked after by local authority and need for care, year ending 31 March" +"N3","Parental illness or disability","care0041","Short breaks for children looked after by local authority and need for care, year ending 31 March" +"NN","Family in acute stress or family dysfunction","care0041","Short breaks for children looked after by local authority and need for care, year ending 31 March" +"Z1","Other need for care","care0041","Short breaks for children looked after by local authority and need for care, year ending 31 March" +"ZZ","Total children starting to be looked after by need for care","care0041","Short breaks for children looked after by local authority and need for care, year ending 31 March" +"X","Unknown","care0044","Foster care adopters and duration of final period of care" +"A","All adoptions","care0044","Foster care adopters and duration of final period of care" +"Y","Adopted by foster carer","care0044","Foster care adopters and duration of final period of care" +"N","Not adopted by foster carer","care0044","Foster care adopters and duration of final period of care" +"0799","7 years and over","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0203","2 to 3 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0099","All ages","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0102","1 to 2 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0607","6 to 7 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0001","Under 1 year","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0506","5 to 6 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0405","4 to 5 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"0304","3 to 4 years","care0045","Looked after children adopted by age of children at start of last period of care and the length of time until adoption, year ending 31 March" +"1","Inside local authority in Wales","care0156","Children looked after in foster care at 31 March by location of placement" +"2","Outside local authority in Wales","care0156","Children looked after in foster care at 31 March by location of placement" +"3","Placed outside of Wales","care0156","Children looked after in foster care at 31 March by location of placement" +"4","No Postcode","care0156","Children looked after in foster care at 31 March by location of placement" +"5","Total","care0156","Children looked after in foster care at 31 March by location of placement" +"1","Total number of patients resident in the LHB with a valid CTP at the end of the month","hlth3001","Mental Health (Wales) Measure Part 2 - Care and Treatment Plans" +"4","Total number of patients resident in the LHB currently in receipt of secondary Mental Health services at the end of the month","hlth3001","Mental Health (Wales) Measure Part 2 - Care and Treatment Plans" +"5","Percentage of patients resident in the LHB, who are in receipt of secondary mental health services, who have a valid CTPs","hlth3001","Mental Health (Wales) Measure Part 2 - Care and Treatment Plans" +"0001","Under 1 year","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0102","1 to 2 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0203","2 to 3 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0304","3 to 4 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0405","4 to 5 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0506","5 to 6 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0607","6 to 7 years","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0799","7 years and over","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"0099","All ages","care0046","Looked after children adopted, by time in days between the different stages of the adoption process, by age at start of period of care, year ending 31 March" +"1","CH/015: The number of children with a care and support plan at 31st March","care0170","Children with a care and support plan at 31st March, by local authority" +"2","CH/016: The total number of children with a care and support plan where needs are met through a Direct Payment at 31st March","care0170","Children with a care and support plan at 31st March, by local authority" +"4","CH/053d: category 4","care0176","Care experienced young people at the 31 March, by local authority and category" +"5","CH/053e: category 5","care0176","Care experienced young people at the 31 March, by local authority and category" +"6","CH/053f: category 6","care0176","Care experienced young people at the 31 March, by local authority and category" +"2","CH/053b: category 2","care0176","Care experienced young people at the 31 March, by local authority and category" +"1","CH/053a: category 1","care0176","Care experienced young people at the 31 March, by local authority and category" +"99","CH/053: Total","care0176","Care experienced young people at the 31 March, by local authority and category" +"3","CH/053c: category 3","care0176","Care experienced young people at the 31 March, by local authority and category" +"1","AD/029: The number of adults who paid the maximum weekly charge towards the cost of care or support for carers during the year","care0186","Adults charged for care and support, by local authority and measure" +"1","CA/001: The total number of contacts to statutory social services by adult carers or professionals contacting the service on their behalf received during the year","care0188","Contacts received for adult carers by statutory social services during the year, by local authority" +"2","CA/002: The number of contacts by adult carers received by statutory Social Services during the year where advice or assistance was provided","care0188","Contacts received for adult carers by statutory social services during the year, by local authority" +"1","CA/003a: Self","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"2","CA/003b: Relative","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"3","CA/003c: Friend or neighbour","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"4","CA/003d: Early intervention prevention service (Step-up)","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"5","CA/003e: Health","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"6","CA/003f: Education","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"7","CA/003g: Housing","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"8","CA/003h: Police","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"9","CA/003i: Probation","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"10","CA/003j: Third Sector Organisation","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"11","CA/003k: Local Authority","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"12","CA/003l: Independent Hospital","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"13","CA/003m: Ambulance Service","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"14","CA/003n: Care Regulator","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"15","CA/003o: Provider","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"16","CA/003p: Advocate","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"17","CA/003q: Internal (Social Worker, Other Team)","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"18","CA/003r: Other","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"99","CA/003: Total","care0189","Contacts received for adult carers during the year, by local authority and source of contact" +"1","CA/004: The total number of carers needs assessments for adults undertaken during the year","care0190","Carers needs assessments for adults undertaken during the year, by local authority" +"2","CA/005a: Needs could be met with a carer’s support plan or care and support plan","care0190","Carers needs assessments for adults undertaken during the year, by local authority" +"3","CA/005b: Needs were able to be met by any other means","care0190","Carers needs assessments for adults undertaken during the year, by local authority" +"4","CA/005c: There were no eligible needs to meet","care0190","Carers needs assessments for adults undertaken during the year, by local authority" +"99","CA/005: Total number of carers needs assessments for adults (in CA/004) with an outcome","care0190","Carers needs assessments for adults undertaken during the year, by local authority" +"1","CA/011: The total number of contacts to statutory social serviced by young carers or professionals contacting the service on their behalf received during the year","care0192","Contacts received for young carers by statutory social services during the year, by local authority" +"2","CA/012: Of those identified, the number where advice and assistance was provided","care0192","Contacts received for young carers by statutory social services during the year, by local authority" +"1","CA/013a: Self","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"2","CA/013b: Relative","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"3","CA/013c: Friend or neighbour","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"4","CA/013d: Early intervention prevention service (Step-up)","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"5","CA/013e: Health","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"6","CA/013f: Education","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"7","CA/013g: Housing","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"8","CA/013h: Police","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"9","CA/013i: Probation","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"10","CA/013j: Third Sector Organisation","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"11","CA/013k: Local Authority","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"12","CA/013l: Independent Hospital","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"13","CA/013m: Ambulance Service","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"14","CA/013n: Care Regulator","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"15","CA/013o: Provider","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"16","CA/013p: Advocate","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"17","CA/013q: Internal (Social Worker, Other Team)","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"18","CA/013r: Other","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"99","CA/013: Total","care0193","Contacts received for young carers by statutory children’s services during the year, by local authority and source of contact" +"1","CA/014: The total number of young carers needs assessments undertaken during the year","care0194","Number of young carers needs assessments undertaken during the year, by local authority" +"2","CA/015a: Needs could be met using a young carer’s support plan or care and support plan","care0194","Number of young carers needs assessments undertaken during the year, by local authority" +"3","CA/015b: Needs were able to be met by any other means","care0194","Number of young carers needs assessments undertaken during the year, by local authority" +"4","CA/015c: There were no eligible needs to meet","care0194","Number of young carers needs assessments undertaken during the year, by local authority" +"99","CA/015: Outcome of assessment (CA/014)","care0194","Number of young carers needs assessments undertaken during the year, by local authority" +"1","CA/016a: There was evidence of the active offer of Welsh","care0195","The number of young carers needs assessments completed (CA/014) in Welsh during the year, by local authority" +"2","CA/016b: The Active Offer of Welsh was accepted","care0195","The number of young carers needs assessments completed (CA/014) in Welsh during the year, by local authority" +"1","AD/012: The number of adults with a care and support plan at 31 March","care0198","Adults with a care and support plan at 31 March, by local authority" +"2","AD/013: The total number of adults with a care and support plan where needs are met through a Direct Payment at 31 March","care0198","Adults with a care and support plan at 31 March, by local authority" +"1","AD/016: The number of care and support plans for adults that were due to be reviewed during the year","care0199","Care and support plans for adults that were due to be reviewed during the year, by local authority" +"2","AD/017: The number of care and support plans that were due to be reviewed during the year that were completed within statutory timescales","care0199","Care and support plans for adults that were due to be reviewed during the year, by local authority" +"3","AD/018: The number care and support plans for adults supported with direct payments that were due for review during the year","care0199","Care and support plans for adults that were due to be reviewed during the year, by local authority" +"4","AD/019: The number care and support plans for adults supported with direct payments that were due for review during the year that were completed within statutory timescales","care0199","Care and support plans for adults that were due to be reviewed during the year, by local authority" +"1","CA/017a: The number of young carers with a carer’s support plan at 31st March","care0205","Young Carers with a care and support plan at 31 March, by local authority" +"2","CA/017b: The number of young carers with a carer’s support plan at 31 March and also a care and support plan, where the young person has both responsibilities as a carer and their own care and support needs","care0205","Young Carers with a care and support plan at 31 March, by local authority" +"1","CA/018: The number of young carers support plans that were due to be reviewed during the year","care0210","Number of young carers support plans that were due to be reviewed during the year, by local authority" +"2","CA/019: Of those, the number whose reviews were completed within statutory timescales","care0210","Number of young carers support plans that were due to be reviewed during the year, by local authority" +"1","CH/054a: The total number of care leavers in categories 2,3 and 4 who have completed at least 3 consecutive months of employment, education or training in the 12 months since leaving care","care0211","Number of care leavers in categories 2,3 and 4, by local authority" +"2","CH/054c: The total number of care leavers in categories 2,3 and 4 who left care in the 12 months preceding the collection year","care0211","Number of care leavers in categories 2,3 and 4, by local authority" +"1","CA/006: The number of carers needs assessments for adults refused during the year","care0222","Number of carers needs assessments for adults refused during the year, by local authority" +"1","CA/007a: There was evidence of the active offer of Welsh","care0223","Number of carer’s needs assessments for adults completed during the year with an active offer of Welsh, by local authority" +"2","CA/007b: The Active Offer of Welsh was accepted","care0223","Number of carer’s needs assessments for adults completed during the year with an active offer of Welsh, by local authority" +"3","CA/007c: The assessment was undertaken using the language of choice","care0223","Number of carer’s needs assessments for adults completed during the year with an active offer of Welsh, by local authority" +"1","CA/008a: The number of adult carers with a support plan at 31 March","care0224","Number of adult carers with a support plan at 31 March, by local authority" +"2","CA/008b: The number of adults carers with a care and support plan at 31 March, where the individual receiving care and support also has responsibilities as a carer that is supported in the plan","care0224","Number of adult carers with a support plan at 31 March, by local authority" +"18","Number of patient pathways, assessed as Health Risk Factor R1, waiting within target date or within 25% beyond target date for an outpatient appointment.","hlth3020","Eye Care Measures for NHS Outpatients" +"19","Number of patient pathways, which have a target date allocated and are assessed as Health Risk Factor R1, waiting for an outpatient appointment.","hlth3020","Eye Care Measures for NHS Outpatients" +"21","Percentage of patient pathways, which have a target date allocated and are assessed as Health Risk Factor R1, waiting within target date or within 25% beyond target date for an outpatient appointment.","hlth3020","Eye Care Measures for NHS Outpatients" +"8","Total number of patient pathways, assessed as Health Risk Factor R1, waiting for an outpatient appointment.","hlth3020","Eye Care Measures for NHS Outpatients" +"22","Number of outpatient appointments attended where patients had been assessed as Health Risk Factor R1 and had waited within target date or within 25% beyond target date.","hlth3021","Eye Care Measures for NHS Outpatients" +"15","Total number of outpatient appointments attended where patients had been assessed as Health Risk Factor R1.","hlth3021","Eye Care Measures for NHS Outpatients" +"23","Total number of outpatient appointments attended where patients had been allocated a target date and been assessed as Health Risk Factor R1.","hlth3021","Eye Care Measures for NHS Outpatients" +"24","Percentage of outpatient appointments attended where patients had been allocated a target date and been assessed as Health Risk Factor R1 and had waited within target date or within 25% beyond target date.","hlth3021","Eye Care Measures for NHS Outpatients" +"Attendances","Total attendances","hlth0036","Performance against waiting times targets, all emergency care departments by local health board" +"Non-breaches","Attendances where patients spend less than the target time in an emergency department","hlth0036","Performance against waiting times targets, all emergency care departments by local health board" +"Percentages","Percentage of patients who spend less than the target time in an emergency department","hlth0036","Performance against waiting times targets, all emergency care departments by local health board" +"TargetOneYear","Patient pathways waiting longer than a year","hlth0084","Key ambitions of the planned care recovery plan for referral to treatment waiting times by date, treatment function, ambition and local health board" +"TargetFirstOP","Patient pathways waiting longer than a year for a first outpatient appointment","hlth0084","Key ambitions of the planned care recovery plan for referral to treatment waiting times by date, treatment function, ambition and local health board" +"TargetTwoYear","Patient pathways waiting longer than two years","hlth0084","Key ambitions of the planned care recovery plan for referral to treatment waiting times by date, treatment function, ambition and local health board" +"1","Adult care homes Total in the last 7 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"CADC_20","Adult & Child in the last 20 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"CADC_7","Adult & Child in the last 7 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"CADH_7","Adult Care Homes in the last 7 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"2","Adult Care homes Total in the last 20 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"CADH_20","Adult Care Homes in the last 20 days","hlth0097","Number of adult care homes which have notified CIW of one or more confirmed cases of COVID-19, in staff or residents, by local authority and date" +"Not Covid Related","Non COVID19 Related","hlth0098","Number of notifications of deaths of adult care home residents involving COVID-19 (both confirmed and suspected), occurring in care homes, by local authority and day of notification" +"Confirmed","Confirmed COVID19","hlth0098","Number of notifications of deaths of adult care home residents involving COVID-19 (both confirmed and suspected), occurring in care homes, by local authority and day of notification" +"COVID19 Related","COVID19 Related","hlth0098","Number of notifications of deaths of adult care home residents involving COVID-19 (both confirmed and suspected), occurring in care homes, by local authority and day of notification" +"Total Deaths","Total Deaths","hlth0098","Number of notifications of deaths of adult care home residents involving COVID-19 (both confirmed and suspected), occurring in care homes, by local authority and day of notification" +"Suspected","Suspected COVID19","hlth0098","Number of notifications of deaths of adult care home residents involving COVID-19 (both confirmed and suspected), occurring in care homes, by local authority and day of notification" +"Total Deaths","Total Deaths","hlth0099","Number of daily notifications of deaths of adult care home residents with and without care provided, by date of notification" +"With Nursing","With nursing","hlth0099","Number of daily notifications of deaths of adult care home residents with and without care provided, by date of notification" +"Without Nursing","Without nursing","hlth0099","Number of daily notifications of deaths of adult care home residents with and without care provided, by date of notification" +"01/01/2021","01 January 2021","hlth0100","Number of registered adult care homes by local authority" +"01/02/2023","01 February 2023","hlth0100","Number of registered adult care homes by local authority" +"01/06/2022","01 June 2022","hlth0100","Number of registered adult care homes by local authority" +"01/12/2021","01 December 2021","hlth0100","Number of registered adult care homes by local authority" +"02/02/2022","02 February 2022","hlth0100","Number of registered adult care homes by local authority" +"02/03/2022","02 March 2022","hlth0100","Number of registered adult care homes by local authority" +"02/06/2021","02 June 2021","hlth0100","Number of registered adult care homes by local authority" +"02/11/2022","02 November 2022","hlth0100","Number of registered adult care homes by local authority" +"03/11/2021","03 November 2021","hlth0100","Number of registered adult care homes by local authority" +"04/01/2023","04 January 2023","hlth0100","Number of registered adult care homes by local authority" +"04/05/2022","04 May 2022","hlth0100","Number of registered adult care homes by local authority" +"04/12/2020","04 December 2020","hlth0100","Number of registered adult care homes by local authority" +"05/01/2022","05 January 2022","hlth0100","Number of registered adult care homes by local authority" +"05/10/2022","05 October 2022","hlth0100","Number of registered adult care homes by local authority" +"06/04/2022","06 April 2022","hlth0100","Number of registered adult care homes by local authority" +"06/05/2021","06 May 2021","hlth0100","Number of registered adult care homes by local authority" +"06/07/2022","06 July 2022","hlth0100","Number of registered adult care homes by local authority" +"06/10/2021","06 October 2021","hlth0100","Number of registered adult care homes by local authority" +"07/09/2022","07 September 2022","hlth0100","Number of registered adult care homes by local authority" +"08/06/2022","08 June 2022","hlth0100","Number of registered adult care homes by local authority" +"08/09/2021","08 September 2021","hlth0100","Number of registered adult care homes by local authority" +"09/02/2022","09 February 2022","hlth0100","Number of registered adult care homes by local authority" +"09/03/2022","09 March 2022","hlth0100","Number of registered adult care homes by local authority" +"09/04/2021","09 April 2021","hlth0100","Number of registered adult care homes by local authority" +"10/08/2022","10 August 2022","hlth0100","Number of registered adult care homes by local authority" +"11/05/2022","11 May 2022","hlth0100","Number of registered adult care homes by local authority" +"11/08/2021","11 August 2021","hlth0100","Number of registered adult care homes by local authority" +"12/02/2021","12 February 2021","hlth0100","Number of registered adult care homes by local authority" +"12/03/2021","12 March 2021","hlth0100","Number of registered adult care homes by local authority" +"13/04/2022","13 April 2022","hlth0100","Number of registered adult care homes by local authority" +"13/07/2022","13 July 2022","hlth0100","Number of registered adult care homes by local authority" +"14/07/2021","14 July 2021","hlth0100","Number of registered adult care homes by local authority" +"14/12/2022","14 December 2022","hlth0100","Number of registered adult care homes by local authority" +"15/01/2021","15 January 2021","hlth0100","Number of registered adult care homes by local authority" +"15/06/2022","15 June 2022","hlth0100","Number of registered adult care homes by local authority" +"15/12/2021","15 December 2021","hlth0100","Number of registered adult care homes by local authority" +"16/02/2022","16 February 2022","hlth0100","Number of registered adult care homes by local authority" +"16/03/2022","16 March 2022","hlth0100","Number of registered adult care homes by local authority" +"16/06/2021","16 June 2021","hlth0100","Number of registered adult care homes by local authority" +"16/11/2022","16 November 2022","hlth0100","Number of registered adult care homes by local authority" +"17/11/2021","17 November 2021","hlth0100","Number of registered adult care homes by local authority" +"18/01/2023","18 January 2023","hlth0100","Number of registered adult care homes by local authority" +"18/05/2022","18 May 2022","hlth0100","Number of registered adult care homes by local authority" +"18/12/2020","18 December 2020","hlth0100","Number of registered adult care homes by local authority" +"19/01/2022","19 January 2022","hlth0100","Number of registered adult care homes by local authority" +"19/10/2022","19 October 2022","hlth0100","Number of registered adult care homes by local authority" +"20/04/2022","20 April 2022","hlth0100","Number of registered adult care homes by local authority" +"20/05/2021","20 May 2021","hlth0100","Number of registered adult care homes by local authority" +"20/07/2022","20 July 2022","hlth0100","Number of registered adult care homes by local authority" +"20/10/2021","20 October 2021","hlth0100","Number of registered adult care homes by local authority" +"21/09/2022","21 September 2022","hlth0100","Number of registered adult care homes by local authority" +"22/04/2021","22 April 2021","hlth0100","Number of registered adult care homes by local authority" +"22/06/2022","22 June 2022","hlth0100","Number of registered adult care homes by local authority" +"22/09/2021","22 September 2021","hlth0100","Number of registered adult care homes by local authority" +"23/02/2022","23 February 2022","hlth0100","Number of registered adult care homes by local authority" +"23/03/2022","23 March 2022","hlth0100","Number of registered adult care homes by local authority" +"24/08/2022","24 August 2022","hlth0100","Number of registered adult care homes by local authority" +"25/05/2022","25 May 2022","hlth0100","Number of registered adult care homes by local authority" +"25/08/2021","25 August 2021","hlth0100","Number of registered adult care homes by local authority" +"26/01/2022","26 January 2022","hlth0100","Number of registered adult care homes by local authority" +"26/02/2021","26 February 2021","hlth0100","Number of registered adult care homes by local authority" +"26/03/2021","26 March 2021","hlth0100","Number of registered adult care homes by local authority" +"27/04/2022","27 April 2022","hlth0100","Number of registered adult care homes by local authority" +"27/07/2022","27 July 2022","hlth0100","Number of registered adult care homes by local authority" +"28/07/2021","28 July 2021","hlth0100","Number of registered adult care homes by local authority" +"29/01/2021","29 January 2021","hlth0100","Number of registered adult care homes by local authority" +"29/06/2022","29 June 2022","hlth0100","Number of registered adult care homes by local authority" +"29/12/2021","29 December 2021","hlth0100","Number of registered adult care homes by local authority" +"30/03/2022","30 March 2022","hlth0100","Number of registered adult care homes by local authority" +"30/06/2021","30 June 2021","hlth0100","Number of registered adult care homes by local authority" +"30/11/2022","30 November 2022","hlth0100","Number of registered adult care homes by local authority" diff --git a/wales/matrix.csv b/wales/matrix.csv new file mode 100644 index 0000000..ba46e5b --- /dev/null +++ b/wales/matrix.csv @@ -0,0 +1,3656 @@ +"Authority_ItemName_ENG","Authority_Code","Row_ItemName_ENG","Row_Code","expenditure","initial_year","final_year","category","Dataitem_Code","Dataitem_ItemName_ENG","Dataset","denominator","initial_value","final_value","success_rate","max_value","min_value" +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,914,1103,0.777777777777778,49561,412 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,107,148,0.444444444444444,15376,24 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,912,1068,0.75,46235,218 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,510,625,0.625,26633,233 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,168,395,0.75,6319,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,637,829,0.555555555555556,27767,191 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,406,606,0.5,21907,75 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,75,517,0.777777777777778,13053,16 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,231,379,0.75,7856,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,122,228,0.75,1974,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,504,1048,0.5,236517,172 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,11,21,0.375,3079,3 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,13,17,0.666666666666667,1070,2 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,9,7,0.666666666666667,980,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,6,5,0.666666666666667,971,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,141,209,0.444444444444444,5638,45 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,248,0.555555555555556,6958,89 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,96,51,0.428571428571429,22411,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,3,0,0.142857142857143,959,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,8,0.428571428571429,974,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,814,939,0.6,20640,179 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,892,911,0.6,212479,166 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,71,52,0.4,8467,14 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,160,340,0.8,11177,11 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,191,361,0.8,13857,52 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,10,0.555555555555556,497,2 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,9,9,0.555555555555556,463,1 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,9,0.666666666666667,433,1 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,7,0.555555555555556,281,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,49,18,0.333333333333333,2285,5 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,18,0.222222222222222,2491,6 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,53,16,0.125,2254,0 +"Blaenau Gwent","545","Net current expenditure",72,163989.51483465,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,19,16,0.166666666666667,2556,6 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,914,1103,0.777777777777778,49561,412 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,107,148,0.444444444444444,15376,24 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,912,1068,0.75,46235,218 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,510,625,0.625,26633,233 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,168,395,0.75,6319,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,637,829,0.555555555555556,27767,191 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,406,606,0.5,21907,75 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,75,517,0.777777777777778,13053,16 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,231,379,0.75,7856,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,122,228,0.75,1974,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,504,1048,0.5,236517,172 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,11,21,0.375,3079,3 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,13,17,0.666666666666667,1070,2 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,9,7,0.666666666666667,980,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,6,5,0.666666666666667,971,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,141,209,0.444444444444444,5638,45 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,248,0.555555555555556,6958,89 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,96,51,0.428571428571429,22411,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,3,0,0.142857142857143,959,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,8,0.428571428571429,974,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,814,939,0.6,20640,179 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,892,911,0.6,212479,166 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,71,52,0.4,8467,14 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,160,340,0.8,11177,11 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,191,361,0.8,13857,52 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,10,0.555555555555556,497,2 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,9,9,0.555555555555556,463,1 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,9,0.666666666666667,433,1 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,7,0.555555555555556,281,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,49,18,0.333333333333333,2285,5 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,18,0.222222222222222,2491,6 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,53,16,0.125,2254,0 +"Blaenau Gwent","545","Non-school expenditure",2,2860.42890495,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,19,16,0.166666666666667,2556,6 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,914,1103,0.777777777777778,49561,412 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,107,148,0.444444444444444,15376,24 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,912,1068,0.75,46235,218 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,510,625,0.625,26633,233 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,168,395,0.75,6319,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,637,829,0.555555555555556,27767,191 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,406,606,0.5,21907,75 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,75,517,0.777777777777778,13053,16 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,231,379,0.75,7856,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,122,228,0.75,1974,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,504,1048,0.5,236517,172 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,11,21,0.375,3079,3 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,13,17,0.666666666666667,1070,2 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,9,7,0.666666666666667,980,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,6,5,0.666666666666667,971,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,141,209,0.444444444444444,5638,45 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,248,0.555555555555556,6958,89 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,96,51,0.428571428571429,22411,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,3,0,0.142857142857143,959,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,8,0.428571428571429,974,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,814,939,0.6,20640,179 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,892,911,0.6,212479,166 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,71,52,0.4,8467,14 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,160,340,0.8,11177,11 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,191,361,0.8,13857,52 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,10,0.555555555555556,497,2 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,9,9,0.555555555555556,463,1 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,9,0.666666666666667,433,1 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,7,0.555555555555556,281,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,49,18,0.333333333333333,2285,5 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,18,0.222222222222222,2491,6 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,53,16,0.125,2254,0 +"Blaenau Gwent","545","Personal social services - children and families",6,14138.69603935,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,19,16,0.166666666666667,2556,6 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,914,1103,0.777777777777778,49561,412 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,107,148,0.444444444444444,15376,24 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,912,1068,0.75,46235,218 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,510,625,0.625,26633,233 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,168,395,0.75,6319,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,637,829,0.555555555555556,27767,191 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,406,606,0.5,21907,75 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,75,517,0.777777777777778,13053,16 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,231,379,0.75,7856,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,122,228,0.75,1974,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,504,1048,0.5,236517,172 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,11,21,0.375,3079,3 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,13,17,0.666666666666667,1070,2 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,9,7,0.666666666666667,980,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,6,5,0.666666666666667,971,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,141,209,0.444444444444444,5638,45 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,248,0.555555555555556,6958,89 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,96,51,0.428571428571429,22411,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,3,0,0.142857142857143,959,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,8,0.428571428571429,974,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,814,939,0.6,20640,179 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,892,911,0.6,212479,166 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,71,52,0.4,8467,14 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,160,340,0.8,11177,11 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,191,361,0.8,13857,52 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,10,0.555555555555556,497,2 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,9,9,0.555555555555556,463,1 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,9,0.666666666666667,433,1 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,7,0.555555555555556,281,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,49,18,0.333333333333333,2285,5 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,18,0.222222222222222,2491,6 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,53,16,0.125,2254,0 +"Blaenau Gwent","545","Schools expenditure (including delegated and non-delegated funding)",1,56393.216872,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,19,16,0.166666666666667,2556,6 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,914,1103,0.777777777777778,49561,412 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,107,148,0.444444444444444,15376,24 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,912,1068,0.75,46235,218 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,510,625,0.625,26633,233 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,168,395,0.75,6319,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,637,829,0.555555555555556,27767,191 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,406,606,0.5,21907,75 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,75,517,0.777777777777778,13053,16 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,231,379,0.75,7856,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,122,228,0.75,1974,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,504,1048,0.5,236517,172 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,11,21,0.375,3079,3 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,13,17,0.666666666666667,1070,2 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,9,7,0.666666666666667,980,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,6,5,0.666666666666667,971,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,141,209,0.444444444444444,5638,45 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,248,0.555555555555556,6958,89 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,96,51,0.428571428571429,22411,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,3,0,0.142857142857143,959,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,8,0.428571428571429,974,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,814,939,0.6,20640,179 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,892,911,0.6,212479,166 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,71,52,0.4,8467,14 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,160,340,0.8,11177,11 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,191,361,0.8,13857,52 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,10,0.555555555555556,497,2 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,9,9,0.555555555555556,463,1 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,9,0.666666666666667,433,1 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,7,0.555555555555556,281,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,49,18,0.333333333333333,2285,5 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,18,0.222222222222222,2491,6 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,53,16,0.125,2254,0 +"Blaenau Gwent","545","Total service expenditure",60,160402.95226315,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,19,16,0.166666666666667,2556,6 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3719,1288,0.444444444444444,49561,412 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1696,213,0.444444444444444,15376,24 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3718,984,0.375,46235,218 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1382,1567,0.555555555555556,27767,191 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26392,13281,0.75,236517,172 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,214,224,0.625,3079,3 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,431,457,0.555555555555556,5638,45 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,432,575,0.666666666666667,6958,89 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",7,904,813,0.285714285714286,26633,233 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",7,305,171,0.285714285714286,6319,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,758,982,0.571428571428571,21907,75 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,379,815,0.625,13053,16 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,294,216,0.285714285714286,7856,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,139,119,0.285714285714286,1974,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,26,19,0.375,1070,2 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,11,19,0.375,980,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,18,0.375,971,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,35,15,0.428571428571429,22411,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,19,2,0.285714285714286,959,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,4,15,0.714285714285714,974,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,656,1090,0.6,20640,179 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7191,3430,0.6,212479,166 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,366,243,0.6,8467,14 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,144,370,0.6,11177,11 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,528,594,0.4,13857,52 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",8,8,36,0.5,497,2 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",8,8,36,0.5,463,1 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",8,8,35,0.75,433,1 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",8,4,23,0.5,281,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",8,88,134,0.5,2285,5 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",8,95,134,0.625,2491,6 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,95,155,0.857142857142857,2254,0 +"Bridgend","536","Net current expenditure",72,291029.04666425,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,101,155,0.5,2556,6 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3719,1288,0.444444444444444,49561,412 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1696,213,0.444444444444444,15376,24 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3718,984,0.375,46235,218 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1382,1567,0.555555555555556,27767,191 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26392,13281,0.75,236517,172 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,214,224,0.625,3079,3 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,431,457,0.555555555555556,5638,45 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,432,575,0.666666666666667,6958,89 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",7,904,813,0.285714285714286,26633,233 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",7,305,171,0.285714285714286,6319,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,758,982,0.571428571428571,21907,75 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,379,815,0.625,13053,16 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,294,216,0.285714285714286,7856,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,139,119,0.285714285714286,1974,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,26,19,0.375,1070,2 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,11,19,0.375,980,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,18,0.375,971,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,35,15,0.428571428571429,22411,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,19,2,0.285714285714286,959,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,4,15,0.714285714285714,974,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,656,1090,0.6,20640,179 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7191,3430,0.6,212479,166 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,366,243,0.6,8467,14 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,144,370,0.6,11177,11 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,528,594,0.4,13857,52 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",8,8,36,0.5,497,2 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",8,8,36,0.5,463,1 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",8,8,35,0.75,433,1 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",8,4,23,0.5,281,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",8,88,134,0.5,2285,5 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",8,95,134,0.625,2491,6 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,95,155,0.857142857142857,2254,0 +"Bridgend","536","Non-school expenditure",2,3844.7397,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,101,155,0.5,2556,6 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3719,1288,0.444444444444444,49561,412 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1696,213,0.444444444444444,15376,24 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3718,984,0.375,46235,218 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1382,1567,0.555555555555556,27767,191 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26392,13281,0.75,236517,172 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,214,224,0.625,3079,3 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,431,457,0.555555555555556,5638,45 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,432,575,0.666666666666667,6958,89 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",7,904,813,0.285714285714286,26633,233 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",7,305,171,0.285714285714286,6319,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,758,982,0.571428571428571,21907,75 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,379,815,0.625,13053,16 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,294,216,0.285714285714286,7856,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,139,119,0.285714285714286,1974,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,26,19,0.375,1070,2 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,11,19,0.375,980,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,18,0.375,971,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,35,15,0.428571428571429,22411,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,19,2,0.285714285714286,959,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,4,15,0.714285714285714,974,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,656,1090,0.6,20640,179 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7191,3430,0.6,212479,166 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,366,243,0.6,8467,14 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,144,370,0.6,11177,11 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,528,594,0.4,13857,52 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",8,8,36,0.5,497,2 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",8,8,36,0.5,463,1 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",8,8,35,0.75,433,1 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",8,4,23,0.5,281,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",8,88,134,0.5,2285,5 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",8,95,134,0.625,2491,6 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,95,155,0.857142857142857,2254,0 +"Bridgend","536","Personal social services - children and families",6,23092.6806367,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,101,155,0.5,2556,6 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3719,1288,0.444444444444444,49561,412 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1696,213,0.444444444444444,15376,24 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3718,984,0.375,46235,218 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1382,1567,0.555555555555556,27767,191 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26392,13281,0.75,236517,172 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,214,224,0.625,3079,3 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,431,457,0.555555555555556,5638,45 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,432,575,0.666666666666667,6958,89 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",7,904,813,0.285714285714286,26633,233 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",7,305,171,0.285714285714286,6319,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,758,982,0.571428571428571,21907,75 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,379,815,0.625,13053,16 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,294,216,0.285714285714286,7856,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,139,119,0.285714285714286,1974,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,26,19,0.375,1070,2 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,11,19,0.375,980,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,18,0.375,971,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,35,15,0.428571428571429,22411,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,19,2,0.285714285714286,959,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,4,15,0.714285714285714,974,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,656,1090,0.6,20640,179 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7191,3430,0.6,212479,166 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,366,243,0.6,8467,14 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,144,370,0.6,11177,11 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,528,594,0.4,13857,52 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",8,8,36,0.5,497,2 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",8,8,36,0.5,463,1 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",8,8,35,0.75,433,1 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",8,4,23,0.5,281,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",8,88,134,0.5,2285,5 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",8,95,134,0.625,2491,6 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,95,155,0.857142857142857,2254,0 +"Bridgend","536","Schools expenditure (including delegated and non-delegated funding)",1,113612.72962205,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,101,155,0.5,2556,6 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3719,1288,0.444444444444444,49561,412 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1696,213,0.444444444444444,15376,24 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3718,984,0.375,46235,218 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1382,1567,0.555555555555556,27767,191 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26392,13281,0.75,236517,172 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,214,224,0.625,3079,3 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,431,457,0.555555555555556,5638,45 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,432,575,0.666666666666667,6958,89 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",7,904,813,0.285714285714286,26633,233 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",7,305,171,0.285714285714286,6319,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,758,982,0.571428571428571,21907,75 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,379,815,0.625,13053,16 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,294,216,0.285714285714286,7856,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,139,119,0.285714285714286,1974,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,26,19,0.375,1070,2 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,11,19,0.375,980,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,18,0.375,971,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,35,15,0.428571428571429,22411,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,19,2,0.285714285714286,959,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,4,15,0.714285714285714,974,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,656,1090,0.6,20640,179 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7191,3430,0.6,212479,166 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,366,243,0.6,8467,14 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,144,370,0.6,11177,11 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,528,594,0.4,13857,52 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",8,8,36,0.5,497,2 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",8,8,36,0.5,463,1 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",8,8,35,0.75,433,1 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",8,4,23,0.5,281,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",8,88,134,0.5,2285,5 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",8,95,134,0.625,2491,6 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,95,155,0.857142857142857,2254,0 +"Bridgend","536","Total service expenditure",60,282895.38666425,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,101,155,0.5,2556,6 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2581,2006,0.333333333333333,49561,412 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,785,417,0.444444444444444,15376,24 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2505,1907,0.375,46235,218 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,690,1448,0.5,26633,233 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,110,330,0.625,6319,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,686,1832,0.444444444444444,27767,191 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,5308,2497,0.625,236517,172 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,100,50,0.625,3079,3 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,336,113,0.444444444444444,5638,45 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,454,146,0.333333333333333,6958,89 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,1092,1149,0.571428571428571,21907,75 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,134,676,0.75,13053,16 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,422,330,0.571428571428571,7856,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,84,175,0.571428571428571,1974,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,92,45,0.375,1070,2 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,92,45,0.375,980,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,79,45,0.625,971,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,226,129,0.571428571428571,22411,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,11,53,0.571428571428571,959,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,38,25,0.714285714285714,974,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1218,1479,0.6,20640,179 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,40457,1612,0.2,212479,166 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,1007,114,0.2,8467,14 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,349,757,0.8,11177,11 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,562,807,0.8,13857,52 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,29,25,0.444444444444444,497,2 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,24,25,0.555555555555556,463,1 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,20,25,0.555555555555556,433,1 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,13,0.333333333333333,281,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,93,84,0.666666666666667,2285,5 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,113,84,0.444444444444444,2491,6 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,95,149,0.5,2254,0 +"Caerphilly","544","Net current expenditure",72,373393.5239911,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,40,149,0.5,2556,6 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2581,2006,0.333333333333333,49561,412 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,785,417,0.444444444444444,15376,24 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2505,1907,0.375,46235,218 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,690,1448,0.5,26633,233 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,110,330,0.625,6319,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,686,1832,0.444444444444444,27767,191 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,5308,2497,0.625,236517,172 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,100,50,0.625,3079,3 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,336,113,0.444444444444444,5638,45 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,454,146,0.333333333333333,6958,89 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,1092,1149,0.571428571428571,21907,75 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,134,676,0.75,13053,16 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,422,330,0.571428571428571,7856,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,84,175,0.571428571428571,1974,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,92,45,0.375,1070,2 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,92,45,0.375,980,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,79,45,0.625,971,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,226,129,0.571428571428571,22411,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,11,53,0.571428571428571,959,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,38,25,0.714285714285714,974,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1218,1479,0.6,20640,179 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,40457,1612,0.2,212479,166 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,1007,114,0.2,8467,14 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,349,757,0.8,11177,11 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,562,807,0.8,13857,52 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,29,25,0.444444444444444,497,2 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,24,25,0.555555555555556,463,1 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,20,25,0.555555555555556,433,1 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,13,0.333333333333333,281,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,93,84,0.666666666666667,2285,5 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,113,84,0.444444444444444,2491,6 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,95,149,0.5,2254,0 +"Caerphilly","544","Non-school expenditure",2,7648.5199035,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,40,149,0.5,2556,6 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2581,2006,0.333333333333333,49561,412 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,785,417,0.444444444444444,15376,24 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2505,1907,0.375,46235,218 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,690,1448,0.5,26633,233 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,110,330,0.625,6319,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,686,1832,0.444444444444444,27767,191 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,5308,2497,0.625,236517,172 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,100,50,0.625,3079,3 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,336,113,0.444444444444444,5638,45 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,454,146,0.333333333333333,6958,89 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,1092,1149,0.571428571428571,21907,75 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,134,676,0.75,13053,16 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,422,330,0.571428571428571,7856,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,84,175,0.571428571428571,1974,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,92,45,0.375,1070,2 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,92,45,0.375,980,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,79,45,0.625,971,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,226,129,0.571428571428571,22411,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,11,53,0.571428571428571,959,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,38,25,0.714285714285714,974,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1218,1479,0.6,20640,179 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,40457,1612,0.2,212479,166 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,1007,114,0.2,8467,14 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,349,757,0.8,11177,11 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,562,807,0.8,13857,52 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,29,25,0.444444444444444,497,2 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,24,25,0.555555555555556,463,1 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,20,25,0.555555555555556,433,1 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,13,0.333333333333333,281,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,93,84,0.666666666666667,2285,5 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,113,84,0.444444444444444,2491,6 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,95,149,0.5,2254,0 +"Caerphilly","544","Personal social services - children and families",6,28334.3964,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,40,149,0.5,2556,6 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2581,2006,0.333333333333333,49561,412 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,785,417,0.444444444444444,15376,24 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2505,1907,0.375,46235,218 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,690,1448,0.5,26633,233 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,110,330,0.625,6319,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,686,1832,0.444444444444444,27767,191 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,5308,2497,0.625,236517,172 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,100,50,0.625,3079,3 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,336,113,0.444444444444444,5638,45 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,454,146,0.333333333333333,6958,89 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,1092,1149,0.571428571428571,21907,75 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,134,676,0.75,13053,16 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,422,330,0.571428571428571,7856,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,84,175,0.571428571428571,1974,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,92,45,0.375,1070,2 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,92,45,0.375,980,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,79,45,0.625,971,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,226,129,0.571428571428571,22411,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,11,53,0.571428571428571,959,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,38,25,0.714285714285714,974,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1218,1479,0.6,20640,179 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,40457,1612,0.2,212479,166 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,1007,114,0.2,8467,14 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,349,757,0.8,11177,11 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,562,807,0.8,13857,52 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,29,25,0.444444444444444,497,2 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,24,25,0.555555555555556,463,1 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,20,25,0.555555555555556,433,1 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,13,0.333333333333333,281,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,93,84,0.666666666666667,2285,5 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,113,84,0.444444444444444,2491,6 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,95,149,0.5,2254,0 +"Caerphilly","544","Schools expenditure (including delegated and non-delegated funding)",1,144111.5862495,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,40,149,0.5,2556,6 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2581,2006,0.333333333333333,49561,412 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,785,417,0.444444444444444,15376,24 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2505,1907,0.375,46235,218 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,690,1448,0.5,26633,233 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,110,330,0.625,6319,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,686,1832,0.444444444444444,27767,191 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,5308,2497,0.625,236517,172 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,100,50,0.625,3079,3 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,336,113,0.444444444444444,5638,45 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,454,146,0.333333333333333,6958,89 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,1092,1149,0.571428571428571,21907,75 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,134,676,0.75,13053,16 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,422,330,0.571428571428571,7856,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,84,175,0.571428571428571,1974,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,92,45,0.375,1070,2 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,92,45,0.375,980,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,79,45,0.625,971,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,226,129,0.571428571428571,22411,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,11,53,0.571428571428571,959,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,38,25,0.714285714285714,974,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1218,1479,0.6,20640,179 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,40457,1612,0.2,212479,166 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,1007,114,0.2,8467,14 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,349,757,0.8,11177,11 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,562,807,0.8,13857,52 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,29,25,0.444444444444444,497,2 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,24,25,0.555555555555556,463,1 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,20,25,0.555555555555556,433,1 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,13,0.333333333333333,281,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,93,84,0.666666666666667,2285,5 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,113,84,0.444444444444444,2491,6 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,95,149,0.5,2254,0 +"Caerphilly","544","Total service expenditure",60,364486.4665631,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,40,149,0.5,2556,6 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2876,3872,0.555555555555556,49561,412 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,748,906,0.555555555555556,15376,24 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2610,3488,0.625,46235,218 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1242,3854,0.75,26633,233 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,494,255,0.375,6319,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1928,3561,0.444444444444444,27767,191 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,166,2460,0.875,21907,75 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,41,1040,0.777777777777778,13053,16 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1762,202,0.5,7856,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,14,91,0.625,1974,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26833,65544,0.625,236517,172 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,143,889,0.625,3079,3 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,4,20,0.666666666666667,1070,2 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,0,20,0.666666666666667,980,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,0,12,0.666666666666667,971,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,420,648,0.666666666666667,5638,45 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,538,853,0.666666666666667,6958,89 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,864,127,0.571428571428571,22411,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,164,91,0.571428571428571,959,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,40,0.571428571428571,974,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1178,2044,0.6,20640,179 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,26524,46822,0.6,212479,166 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,986,1998,0.6,8467,14 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,367,1392,0.6,11177,11 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,741,2281,1,13857,52 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,32,67,0.777777777777778,497,2 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,29,63,0.777777777777778,463,1 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,21,54,0.888888888888889,433,1 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,11,33,0.777777777777778,281,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,50,332,1,2285,5 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,200,453,0.888888888888889,2491,6 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,160,178,0.875,2254,0 +"Cardiff","552","Net current expenditure",72,707464.1456142,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,254,447,1,2556,6 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2876,3872,0.555555555555556,49561,412 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,748,906,0.555555555555556,15376,24 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2610,3488,0.625,46235,218 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1242,3854,0.75,26633,233 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,494,255,0.375,6319,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1928,3561,0.444444444444444,27767,191 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,166,2460,0.875,21907,75 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,41,1040,0.777777777777778,13053,16 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1762,202,0.5,7856,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,14,91,0.625,1974,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26833,65544,0.625,236517,172 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,143,889,0.625,3079,3 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,4,20,0.666666666666667,1070,2 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,0,20,0.666666666666667,980,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,0,12,0.666666666666667,971,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,420,648,0.666666666666667,5638,45 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,538,853,0.666666666666667,6958,89 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,864,127,0.571428571428571,22411,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,164,91,0.571428571428571,959,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,40,0.571428571428571,974,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1178,2044,0.6,20640,179 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,26524,46822,0.6,212479,166 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,986,1998,0.6,8467,14 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,367,1392,0.6,11177,11 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,741,2281,1,13857,52 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,32,67,0.777777777777778,497,2 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,29,63,0.777777777777778,463,1 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,21,54,0.888888888888889,433,1 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,11,33,0.777777777777778,281,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,50,332,1,2285,5 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,200,453,0.888888888888889,2491,6 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,160,178,0.875,2254,0 +"Cardiff","552","Non-school expenditure",2,10438.5203135,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,254,447,1,2556,6 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2876,3872,0.555555555555556,49561,412 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,748,906,0.555555555555556,15376,24 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2610,3488,0.625,46235,218 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1242,3854,0.75,26633,233 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,494,255,0.375,6319,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1928,3561,0.444444444444444,27767,191 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,166,2460,0.875,21907,75 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,41,1040,0.777777777777778,13053,16 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1762,202,0.5,7856,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,14,91,0.625,1974,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26833,65544,0.625,236517,172 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,143,889,0.625,3079,3 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,4,20,0.666666666666667,1070,2 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,0,20,0.666666666666667,980,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,0,12,0.666666666666667,971,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,420,648,0.666666666666667,5638,45 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,538,853,0.666666666666667,6958,89 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,864,127,0.571428571428571,22411,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,164,91,0.571428571428571,959,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,40,0.571428571428571,974,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1178,2044,0.6,20640,179 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,26524,46822,0.6,212479,166 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,986,1998,0.6,8467,14 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,367,1392,0.6,11177,11 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,741,2281,1,13857,52 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,32,67,0.777777777777778,497,2 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,29,63,0.777777777777778,463,1 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,21,54,0.888888888888889,433,1 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,11,33,0.777777777777778,281,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,50,332,1,2285,5 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,200,453,0.888888888888889,2491,6 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,160,178,0.875,2254,0 +"Cardiff","552","Personal social services - children and families",6,59868.35924615,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,254,447,1,2556,6 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2876,3872,0.555555555555556,49561,412 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,748,906,0.555555555555556,15376,24 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2610,3488,0.625,46235,218 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1242,3854,0.75,26633,233 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,494,255,0.375,6319,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1928,3561,0.444444444444444,27767,191 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,166,2460,0.875,21907,75 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,41,1040,0.777777777777778,13053,16 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1762,202,0.5,7856,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,14,91,0.625,1974,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26833,65544,0.625,236517,172 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,143,889,0.625,3079,3 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,4,20,0.666666666666667,1070,2 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,0,20,0.666666666666667,980,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,0,12,0.666666666666667,971,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,420,648,0.666666666666667,5638,45 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,538,853,0.666666666666667,6958,89 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,864,127,0.571428571428571,22411,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,164,91,0.571428571428571,959,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,40,0.571428571428571,974,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1178,2044,0.6,20640,179 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,26524,46822,0.6,212479,166 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,986,1998,0.6,8467,14 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,367,1392,0.6,11177,11 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,741,2281,1,13857,52 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,32,67,0.777777777777778,497,2 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,29,63,0.777777777777778,463,1 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,21,54,0.888888888888889,433,1 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,11,33,0.777777777777778,281,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,50,332,1,2285,5 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,200,453,0.888888888888889,2491,6 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,160,178,0.875,2254,0 +"Cardiff","552","Schools expenditure (including delegated and non-delegated funding)",1,260647.70721295,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,254,447,1,2556,6 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2876,3872,0.555555555555556,49561,412 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,748,906,0.555555555555556,15376,24 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2610,3488,0.625,46235,218 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1242,3854,0.75,26633,233 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,494,255,0.375,6319,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1928,3561,0.444444444444444,27767,191 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,166,2460,0.875,21907,75 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,41,1040,0.777777777777778,13053,16 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1762,202,0.5,7856,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,14,91,0.625,1974,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,26833,65544,0.625,236517,172 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,143,889,0.625,3079,3 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,4,20,0.666666666666667,1070,2 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,0,20,0.666666666666667,980,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,0,12,0.666666666666667,971,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,420,648,0.666666666666667,5638,45 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,538,853,0.666666666666667,6958,89 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,864,127,0.571428571428571,22411,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,164,91,0.571428571428571,959,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,40,0.571428571428571,974,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1178,2044,0.6,20640,179 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,26524,46822,0.6,212479,166 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,986,1998,0.6,8467,14 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,367,1392,0.6,11177,11 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,741,2281,1,13857,52 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,32,67,0.777777777777778,497,2 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,29,63,0.777777777777778,463,1 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,21,54,0.888888888888889,433,1 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,11,33,0.777777777777778,281,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,50,332,1,2285,5 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,200,453,0.888888888888889,2491,6 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,160,178,0.875,2254,0 +"Cardiff","552","Total service expenditure",60,692023.8715142,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,254,447,1,2556,6 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2999,1473,0.555555555555556,49561,412 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,160,301,0.555555555555556,15376,24 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2005,1639,0.75,46235,218 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1019,1478,0.5,26633,233 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,315,102,0.375,6319,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1333,1346,0.444444444444444,27767,191 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,6111,3459,0.5,236517,172 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,72,70,0.5,3079,3 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,65,75,0.666666666666667,1070,2 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,65,75,0.666666666666667,980,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,65,61,0.666666666666667,971,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,208,272,0.666666666666667,5638,45 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,392,292,0.444444444444444,6958,89 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1235,68,0.714285714285714,22411,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,92,9,0.285714285714286,959,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,33,8,0.428571428571429,974,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,855,1298,0.666666666666667,21907,75 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,188,626,0.857142857142857,13053,16 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,126,97,0.5,7856,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,23,50,0.666666666666667,1974,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,893,1346,0.6,20640,179 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4379,2984,0.4,212479,166 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,279,216,0.4,8467,14 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,424,640,0.6,11177,11 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,525,710,0.6,13857,52 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,19,0.555555555555556,497,2 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,19,0.666666666666667,463,1 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,18,0.555555555555556,433,1 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,61,89,0.555555555555556,2285,5 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,62,89,0.555555555555556,2491,6 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,35,91,0.875,2254,0 +"Carmarthenshire","530","Net current expenditure",72,374877.77795185,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,65,91,0.666666666666667,2556,6 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2999,1473,0.555555555555556,49561,412 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,160,301,0.555555555555556,15376,24 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2005,1639,0.75,46235,218 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1019,1478,0.5,26633,233 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,315,102,0.375,6319,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1333,1346,0.444444444444444,27767,191 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,6111,3459,0.5,236517,172 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,72,70,0.5,3079,3 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,65,75,0.666666666666667,1070,2 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,65,75,0.666666666666667,980,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,65,61,0.666666666666667,971,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,208,272,0.666666666666667,5638,45 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,392,292,0.444444444444444,6958,89 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1235,68,0.714285714285714,22411,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,92,9,0.285714285714286,959,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,33,8,0.428571428571429,974,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,855,1298,0.666666666666667,21907,75 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,188,626,0.857142857142857,13053,16 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,126,97,0.5,7856,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,23,50,0.666666666666667,1974,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,893,1346,0.6,20640,179 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4379,2984,0.4,212479,166 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,279,216,0.4,8467,14 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,424,640,0.6,11177,11 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,525,710,0.6,13857,52 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,19,0.555555555555556,497,2 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,19,0.666666666666667,463,1 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,18,0.555555555555556,433,1 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,61,89,0.555555555555556,2285,5 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,62,89,0.555555555555556,2491,6 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,35,91,0.875,2254,0 +"Carmarthenshire","530","Non-school expenditure",2,5028.50505,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,65,91,0.666666666666667,2556,6 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2999,1473,0.555555555555556,49561,412 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,160,301,0.555555555555556,15376,24 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2005,1639,0.75,46235,218 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1019,1478,0.5,26633,233 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,315,102,0.375,6319,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1333,1346,0.444444444444444,27767,191 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,6111,3459,0.5,236517,172 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,72,70,0.5,3079,3 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,65,75,0.666666666666667,1070,2 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,65,75,0.666666666666667,980,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,65,61,0.666666666666667,971,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,208,272,0.666666666666667,5638,45 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,392,292,0.444444444444444,6958,89 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1235,68,0.714285714285714,22411,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,92,9,0.285714285714286,959,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,33,8,0.428571428571429,974,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,855,1298,0.666666666666667,21907,75 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,188,626,0.857142857142857,13053,16 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,126,97,0.5,7856,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,23,50,0.666666666666667,1974,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,893,1346,0.6,20640,179 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4379,2984,0.4,212479,166 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,279,216,0.4,8467,14 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,424,640,0.6,11177,11 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,525,710,0.6,13857,52 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,19,0.555555555555556,497,2 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,19,0.666666666666667,463,1 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,18,0.555555555555556,433,1 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,61,89,0.555555555555556,2285,5 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,62,89,0.555555555555556,2491,6 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,35,91,0.875,2254,0 +"Carmarthenshire","530","Personal social services - children and families",6,21394.381507,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,65,91,0.666666666666667,2556,6 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2999,1473,0.555555555555556,49561,412 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,160,301,0.555555555555556,15376,24 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2005,1639,0.75,46235,218 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1019,1478,0.5,26633,233 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,315,102,0.375,6319,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1333,1346,0.444444444444444,27767,191 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,6111,3459,0.5,236517,172 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,72,70,0.5,3079,3 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,65,75,0.666666666666667,1070,2 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,65,75,0.666666666666667,980,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,65,61,0.666666666666667,971,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,208,272,0.666666666666667,5638,45 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,392,292,0.444444444444444,6958,89 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1235,68,0.714285714285714,22411,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,92,9,0.285714285714286,959,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,33,8,0.428571428571429,974,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,855,1298,0.666666666666667,21907,75 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,188,626,0.857142857142857,13053,16 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,126,97,0.5,7856,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,23,50,0.666666666666667,1974,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,893,1346,0.6,20640,179 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4379,2984,0.4,212479,166 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,279,216,0.4,8467,14 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,424,640,0.6,11177,11 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,525,710,0.6,13857,52 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,19,0.555555555555556,497,2 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,19,0.666666666666667,463,1 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,18,0.555555555555556,433,1 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,61,89,0.555555555555556,2285,5 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,62,89,0.555555555555556,2491,6 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,35,91,0.875,2254,0 +"Carmarthenshire","530","Schools expenditure (including delegated and non-delegated funding)",1,145317.4745132,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,65,91,0.666666666666667,2556,6 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2999,1473,0.555555555555556,49561,412 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,160,301,0.555555555555556,15376,24 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2005,1639,0.75,46235,218 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1019,1478,0.5,26633,233 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,315,102,0.375,6319,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1333,1346,0.444444444444444,27767,191 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,6111,3459,0.5,236517,172 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,72,70,0.5,3079,3 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,65,75,0.666666666666667,1070,2 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,65,75,0.666666666666667,980,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,65,61,0.666666666666667,971,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,208,272,0.666666666666667,5638,45 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,392,292,0.444444444444444,6958,89 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1235,68,0.714285714285714,22411,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,92,9,0.285714285714286,959,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,33,8,0.428571428571429,974,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,855,1298,0.666666666666667,21907,75 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,188,626,0.857142857142857,13053,16 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,126,97,0.5,7856,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,23,50,0.666666666666667,1974,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,893,1346,0.6,20640,179 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4379,2984,0.4,212479,166 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,279,216,0.4,8467,14 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,424,640,0.6,11177,11 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,525,710,0.6,13857,52 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,19,0.555555555555556,497,2 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,19,0.666666666666667,463,1 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,18,0.555555555555556,433,1 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,61,89,0.555555555555556,2285,5 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,62,89,0.555555555555556,2491,6 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,35,91,0.875,2254,0 +"Carmarthenshire","530","Total service expenditure",60,362565.39520185,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,65,91,0.666666666666667,2556,6 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,459,531,0.666666666666667,49561,412 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,24,80,0.555555555555556,15376,24 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,218,650,0.75,46235,218 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,236,550,0.75,26633,233 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,92,22,0.5,6319,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,328,460,0.666666666666667,27767,191 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,248,403,0.75,21907,75 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,86,252,0.555555555555556,13053,16 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,182,13,0.5,7856,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,71,0,0.25,1974,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2129,5699,0.5,236517,172 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,29,98,0.625,3079,3 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,15,8,0.666666666666667,1070,2 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,12,8,0.555555555555556,980,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,8,0.666666666666667,971,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,67,87,0.444444444444444,5638,45 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,94,113,0.555555555555556,6958,89 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,602,95,0.428571428571429,22411,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,68,11,0.285714285714286,959,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,39,9,0.285714285714286,974,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,204,467,0.8,20640,179 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4664,2314,0.6,212479,166 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,185,132,0.6,8467,14 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,126,271,0.6,11177,11 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,192,369,0.6,13857,52 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,7,0.666666666666667,497,2 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,7,0.555555555555556,463,1 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,11,7,0.555555555555556,433,1 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,5,0.666666666666667,281,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,40,49,0.333333333333333,2285,5 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,42,49,0.444444444444444,2491,6 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,42,50,0.5,2254,0 +"Ceredigion","526","Net current expenditure",72,154075.27753825,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,29,50,0.666666666666667,2556,6 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,459,531,0.666666666666667,49561,412 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,24,80,0.555555555555556,15376,24 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,218,650,0.75,46235,218 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,236,550,0.75,26633,233 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,92,22,0.5,6319,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,328,460,0.666666666666667,27767,191 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,248,403,0.75,21907,75 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,86,252,0.555555555555556,13053,16 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,182,13,0.5,7856,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,71,0,0.25,1974,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2129,5699,0.5,236517,172 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,29,98,0.625,3079,3 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,15,8,0.666666666666667,1070,2 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,12,8,0.555555555555556,980,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,8,0.666666666666667,971,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,67,87,0.444444444444444,5638,45 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,94,113,0.555555555555556,6958,89 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,602,95,0.428571428571429,22411,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,68,11,0.285714285714286,959,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,39,9,0.285714285714286,974,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,204,467,0.8,20640,179 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4664,2314,0.6,212479,166 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,185,132,0.6,8467,14 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,126,271,0.6,11177,11 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,192,369,0.6,13857,52 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,7,0.666666666666667,497,2 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,7,0.555555555555556,463,1 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,11,7,0.555555555555556,433,1 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,5,0.666666666666667,281,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,40,49,0.333333333333333,2285,5 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,42,49,0.444444444444444,2491,6 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,42,50,0.5,2254,0 +"Ceredigion","526","Non-school expenditure",2,2672.40143215,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,29,50,0.666666666666667,2556,6 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,459,531,0.666666666666667,49561,412 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,24,80,0.555555555555556,15376,24 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,218,650,0.75,46235,218 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,236,550,0.75,26633,233 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,92,22,0.5,6319,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,328,460,0.666666666666667,27767,191 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,248,403,0.75,21907,75 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,86,252,0.555555555555556,13053,16 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,182,13,0.5,7856,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,71,0,0.25,1974,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2129,5699,0.5,236517,172 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,29,98,0.625,3079,3 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,15,8,0.666666666666667,1070,2 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,12,8,0.555555555555556,980,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,8,0.666666666666667,971,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,67,87,0.444444444444444,5638,45 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,94,113,0.555555555555556,6958,89 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,602,95,0.428571428571429,22411,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,68,11,0.285714285714286,959,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,39,9,0.285714285714286,974,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,204,467,0.8,20640,179 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4664,2314,0.6,212479,166 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,185,132,0.6,8467,14 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,126,271,0.6,11177,11 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,192,369,0.6,13857,52 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,7,0.666666666666667,497,2 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,7,0.555555555555556,463,1 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,11,7,0.555555555555556,433,1 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,5,0.666666666666667,281,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,40,49,0.333333333333333,2285,5 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,42,49,0.444444444444444,2491,6 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,42,50,0.5,2254,0 +"Ceredigion","526","Personal social services - children and families",6,10267.41108945,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,29,50,0.666666666666667,2556,6 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,459,531,0.666666666666667,49561,412 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,24,80,0.555555555555556,15376,24 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,218,650,0.75,46235,218 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,236,550,0.75,26633,233 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,92,22,0.5,6319,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,328,460,0.666666666666667,27767,191 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,248,403,0.75,21907,75 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,86,252,0.555555555555556,13053,16 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,182,13,0.5,7856,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,71,0,0.25,1974,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2129,5699,0.5,236517,172 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,29,98,0.625,3079,3 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,15,8,0.666666666666667,1070,2 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,12,8,0.555555555555556,980,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,8,0.666666666666667,971,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,67,87,0.444444444444444,5638,45 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,94,113,0.555555555555556,6958,89 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,602,95,0.428571428571429,22411,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,68,11,0.285714285714286,959,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,39,9,0.285714285714286,974,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,204,467,0.8,20640,179 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4664,2314,0.6,212479,166 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,185,132,0.6,8467,14 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,126,271,0.6,11177,11 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,192,369,0.6,13857,52 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,7,0.666666666666667,497,2 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,7,0.555555555555556,463,1 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,11,7,0.555555555555556,433,1 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,5,0.666666666666667,281,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,40,49,0.333333333333333,2285,5 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,42,49,0.444444444444444,2491,6 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,42,50,0.5,2254,0 +"Ceredigion","526","Schools expenditure (including delegated and non-delegated funding)",1,57463.88729015,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,29,50,0.666666666666667,2556,6 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,459,531,0.666666666666667,49561,412 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,24,80,0.555555555555556,15376,24 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,218,650,0.75,46235,218 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,236,550,0.75,26633,233 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,92,22,0.5,6319,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,328,460,0.666666666666667,27767,191 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,248,403,0.75,21907,75 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,86,252,0.555555555555556,13053,16 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,182,13,0.5,7856,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,71,0,0.25,1974,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2129,5699,0.5,236517,172 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,29,98,0.625,3079,3 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,15,8,0.666666666666667,1070,2 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,12,8,0.555555555555556,980,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,8,0.666666666666667,971,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,67,87,0.444444444444444,5638,45 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,94,113,0.555555555555556,6958,89 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,602,95,0.428571428571429,22411,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,68,11,0.285714285714286,959,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,39,9,0.285714285714286,974,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,204,467,0.8,20640,179 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4664,2314,0.6,212479,166 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,185,132,0.6,8467,14 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,126,271,0.6,11177,11 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,192,369,0.6,13857,52 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,7,0.666666666666667,497,2 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,7,0.555555555555556,463,1 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,11,7,0.555555555555556,433,1 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,5,0.666666666666667,281,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,40,49,0.333333333333333,2285,5 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,42,49,0.444444444444444,2491,6 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,42,50,0.5,2254,0 +"Ceredigion","526","Total service expenditure",60,149390.18433825,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,29,50,0.666666666666667,2556,6 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3624,519,0.222222222222222,49561,412 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1562,54,0.222222222222222,15376,24 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3034,668,0.25,46235,218 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,675,537,0.625,26633,233 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,136,18,0.25,6319,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",7,191,351,0.714285714285714,27767,191 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",5,191,480,0.8,21907,75 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",6,61,161,0.666666666666667,13053,16 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,0,15,0.4,7856,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,0,5,0.2,1974,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,48,22,0.222222222222222,1070,2 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,35,22,0.333333333333333,980,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,48,22,0.222222222222222,971,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,159,189,0.555555555555556,5638,45 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,174,219,0.555555555555556,6958,89 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,2110,2476,0.428571428571429,236517,172 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",7,49,47,0.428571428571429,3079,3 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1926,168,0.285714285714286,22411,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",5,0,0,0,96,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,179,422,0.6,20640,179 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8406,2034,0.6,212479,166 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,266,131,0.6,8467,14 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,237,136,0.4,11177,11 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,303,183,0.6,13857,52 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,6,25,0.555555555555556,497,2 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,24,0.666666666666667,463,1 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,4,21,0.666666666666667,433,1 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,13,0.555555555555556,281,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,59,130,0.888888888888889,2285,5 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,66,133,0.888888888888889,2491,6 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,0,117,1,2254,0 +"Conwy","516","Net current expenditure",72,240134.9887155,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,75,120,1,2556,6 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3624,519,0.222222222222222,49561,412 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1562,54,0.222222222222222,15376,24 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3034,668,0.25,46235,218 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,675,537,0.625,26633,233 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,136,18,0.25,6319,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",7,191,351,0.714285714285714,27767,191 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",5,191,480,0.8,21907,75 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",6,61,161,0.666666666666667,13053,16 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,0,15,0.4,7856,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,0,5,0.2,1974,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,48,22,0.222222222222222,1070,2 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,35,22,0.333333333333333,980,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,48,22,0.222222222222222,971,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,159,189,0.555555555555556,5638,45 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,174,219,0.555555555555556,6958,89 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,2110,2476,0.428571428571429,236517,172 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",7,49,47,0.428571428571429,3079,3 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1926,168,0.285714285714286,22411,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",5,0,0,0,96,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,179,422,0.6,20640,179 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8406,2034,0.6,212479,166 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,266,131,0.6,8467,14 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,237,136,0.4,11177,11 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,303,183,0.6,13857,52 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,6,25,0.555555555555556,497,2 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,24,0.666666666666667,463,1 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,4,21,0.666666666666667,433,1 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,13,0.555555555555556,281,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,59,130,0.888888888888889,2285,5 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,66,133,0.888888888888889,2491,6 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,0,117,1,2254,0 +"Conwy","516","Non-school expenditure",2,3701.1278081,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,75,120,1,2556,6 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3624,519,0.222222222222222,49561,412 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1562,54,0.222222222222222,15376,24 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3034,668,0.25,46235,218 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,675,537,0.625,26633,233 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,136,18,0.25,6319,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",7,191,351,0.714285714285714,27767,191 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",5,191,480,0.8,21907,75 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",6,61,161,0.666666666666667,13053,16 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,0,15,0.4,7856,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,0,5,0.2,1974,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,48,22,0.222222222222222,1070,2 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,35,22,0.333333333333333,980,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,48,22,0.222222222222222,971,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,159,189,0.555555555555556,5638,45 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,174,219,0.555555555555556,6958,89 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,2110,2476,0.428571428571429,236517,172 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",7,49,47,0.428571428571429,3079,3 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1926,168,0.285714285714286,22411,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",5,0,0,0,96,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,179,422,0.6,20640,179 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8406,2034,0.6,212479,166 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,266,131,0.6,8467,14 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,237,136,0.4,11177,11 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,303,183,0.6,13857,52 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,6,25,0.555555555555556,497,2 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,24,0.666666666666667,463,1 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,4,21,0.666666666666667,433,1 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,13,0.555555555555556,281,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,59,130,0.888888888888889,2285,5 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,66,133,0.888888888888889,2491,6 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,0,117,1,2254,0 +"Conwy","516","Personal social services - children and families",6,14079.04665,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,75,120,1,2556,6 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3624,519,0.222222222222222,49561,412 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1562,54,0.222222222222222,15376,24 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3034,668,0.25,46235,218 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,675,537,0.625,26633,233 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,136,18,0.25,6319,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",7,191,351,0.714285714285714,27767,191 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",5,191,480,0.8,21907,75 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",6,61,161,0.666666666666667,13053,16 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,0,15,0.4,7856,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,0,5,0.2,1974,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,48,22,0.222222222222222,1070,2 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,35,22,0.333333333333333,980,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,48,22,0.222222222222222,971,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,159,189,0.555555555555556,5638,45 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,174,219,0.555555555555556,6958,89 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,2110,2476,0.428571428571429,236517,172 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",7,49,47,0.428571428571429,3079,3 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1926,168,0.285714285714286,22411,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",5,0,0,0,96,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,179,422,0.6,20640,179 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8406,2034,0.6,212479,166 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,266,131,0.6,8467,14 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,237,136,0.4,11177,11 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,303,183,0.6,13857,52 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,6,25,0.555555555555556,497,2 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,24,0.666666666666667,463,1 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,4,21,0.666666666666667,433,1 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,13,0.555555555555556,281,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,59,130,0.888888888888889,2285,5 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,66,133,0.888888888888889,2491,6 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,0,117,1,2254,0 +"Conwy","516","Schools expenditure (including delegated and non-delegated funding)",1,85539.23087985,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,75,120,1,2556,6 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3624,519,0.222222222222222,49561,412 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1562,54,0.222222222222222,15376,24 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3034,668,0.25,46235,218 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,675,537,0.625,26633,233 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,136,18,0.25,6319,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",7,191,351,0.714285714285714,27767,191 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",5,191,480,0.8,21907,75 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",6,61,161,0.666666666666667,13053,16 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,0,15,0.4,7856,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,0,5,0.2,1974,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,48,22,0.222222222222222,1070,2 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,35,22,0.333333333333333,980,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,48,22,0.222222222222222,971,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,159,189,0.555555555555556,5638,45 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,174,219,0.555555555555556,6958,89 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,2110,2476,0.428571428571429,236517,172 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",7,49,47,0.428571428571429,3079,3 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1926,168,0.285714285714286,22411,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",5,0,0,0,96,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,179,422,0.6,20640,179 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8406,2034,0.6,212479,166 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,266,131,0.6,8467,14 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,237,136,0.4,11177,11 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,303,183,0.6,13857,52 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,6,25,0.555555555555556,497,2 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,24,0.666666666666667,463,1 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,4,21,0.666666666666667,433,1 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,13,0.555555555555556,281,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,59,130,0.888888888888889,2285,5 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,66,133,0.888888888888889,2491,6 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,0,117,1,2254,0 +"Conwy","516","Total service expenditure",60,232713.10006565,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,75,120,1,2556,6 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3318,625,0.111111111111111,49561,412 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,919,79,0.222222222222222,15376,24 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2737,670,0.25,46235,218 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1995,608,0.375,26633,233 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,2,1,0.375,6319,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,677,495,0.222222222222222,27767,191 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1400,172,0.375,236517,172 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,23,3,0.25,3079,3 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",7,16,25,0.428571428571429,1070,2 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",7,16,21,0.285714285714286,980,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",7,4,25,0.571428571428571,971,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,154,180,0.555555555555556,5638,45 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,175,226,0.555555555555556,6958,89 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,444,501,0.428571428571429,21907,75 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,257,274,0.375,13053,16 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,3,2,0.428571428571429,7856,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,2,0,0.428571428571429,1974,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1052,61,0.285714285714286,22411,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,10,0.571428571428571,959,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,7,17,0.571428571428571,974,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.428571428571429,96,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,825,500,0,20640,179 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8646,456,0,212479,166 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,304,34,0,8467,14 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,54,167,0.6,11177,11 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,170,170,0.6,13857,52 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,10,0.555555555555556,497,2 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,10,0.555555555555556,463,1 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,10,0.555555555555556,433,1 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,8,0.444444444444444,281,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,8,11,0.333333333333333,2285,5 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,8,12,0.444444444444444,2491,6 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,6,5,0.25,2254,0 +"Denbighshire","518","Net current expenditure",72,210901.2868,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,12,6,0.333333333333333,2556,6 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3318,625,0.111111111111111,49561,412 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,919,79,0.222222222222222,15376,24 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2737,670,0.25,46235,218 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1995,608,0.375,26633,233 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,2,1,0.375,6319,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,677,495,0.222222222222222,27767,191 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1400,172,0.375,236517,172 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,23,3,0.25,3079,3 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",7,16,25,0.428571428571429,1070,2 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",7,16,21,0.285714285714286,980,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",7,4,25,0.571428571428571,971,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,154,180,0.555555555555556,5638,45 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,175,226,0.555555555555556,6958,89 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,444,501,0.428571428571429,21907,75 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,257,274,0.375,13053,16 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,3,2,0.428571428571429,7856,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,2,0,0.428571428571429,1974,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1052,61,0.285714285714286,22411,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,10,0.571428571428571,959,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,7,17,0.571428571428571,974,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.428571428571429,96,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,825,500,0,20640,179 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8646,456,0,212479,166 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,304,34,0,8467,14 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,54,167,0.6,11177,11 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,170,170,0.6,13857,52 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,10,0.555555555555556,497,2 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,10,0.555555555555556,463,1 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,10,0.555555555555556,433,1 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,8,0.444444444444444,281,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,8,11,0.333333333333333,2285,5 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,8,12,0.444444444444444,2491,6 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,6,5,0.25,2254,0 +"Denbighshire","518","Non-school expenditure",2,2646.200409,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,12,6,0.333333333333333,2556,6 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3318,625,0.111111111111111,49561,412 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,919,79,0.222222222222222,15376,24 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2737,670,0.25,46235,218 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1995,608,0.375,26633,233 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,2,1,0.375,6319,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,677,495,0.222222222222222,27767,191 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1400,172,0.375,236517,172 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,23,3,0.25,3079,3 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",7,16,25,0.428571428571429,1070,2 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",7,16,21,0.285714285714286,980,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",7,4,25,0.571428571428571,971,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,154,180,0.555555555555556,5638,45 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,175,226,0.555555555555556,6958,89 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,444,501,0.428571428571429,21907,75 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,257,274,0.375,13053,16 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,3,2,0.428571428571429,7856,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,2,0,0.428571428571429,1974,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1052,61,0.285714285714286,22411,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,10,0.571428571428571,959,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,7,17,0.571428571428571,974,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.428571428571429,96,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,825,500,0,20640,179 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8646,456,0,212479,166 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,304,34,0,8467,14 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,54,167,0.6,11177,11 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,170,170,0.6,13857,52 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,10,0.555555555555556,497,2 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,10,0.555555555555556,463,1 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,10,0.555555555555556,433,1 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,8,0.444444444444444,281,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,8,11,0.333333333333333,2285,5 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,8,12,0.444444444444444,2491,6 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,6,5,0.25,2254,0 +"Denbighshire","518","Personal social services - children and families",6,12698.073496,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,12,6,0.333333333333333,2556,6 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3318,625,0.111111111111111,49561,412 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,919,79,0.222222222222222,15376,24 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2737,670,0.25,46235,218 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1995,608,0.375,26633,233 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,2,1,0.375,6319,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,677,495,0.222222222222222,27767,191 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1400,172,0.375,236517,172 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,23,3,0.25,3079,3 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",7,16,25,0.428571428571429,1070,2 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",7,16,21,0.285714285714286,980,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",7,4,25,0.571428571428571,971,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,154,180,0.555555555555556,5638,45 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,175,226,0.555555555555556,6958,89 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,444,501,0.428571428571429,21907,75 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,257,274,0.375,13053,16 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,3,2,0.428571428571429,7856,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,2,0,0.428571428571429,1974,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1052,61,0.285714285714286,22411,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,10,0.571428571428571,959,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,7,17,0.571428571428571,974,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.428571428571429,96,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,825,500,0,20640,179 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8646,456,0,212479,166 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,304,34,0,8467,14 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,54,167,0.6,11177,11 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,170,170,0.6,13857,52 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,10,0.555555555555556,497,2 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,10,0.555555555555556,463,1 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,10,0.555555555555556,433,1 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,8,0.444444444444444,281,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,8,11,0.333333333333333,2285,5 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,8,12,0.444444444444444,2491,6 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,6,5,0.25,2254,0 +"Denbighshire","518","Schools expenditure (including delegated and non-delegated funding)",1,81277.2238255,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,12,6,0.333333333333333,2556,6 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3318,625,0.111111111111111,49561,412 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,919,79,0.222222222222222,15376,24 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2737,670,0.25,46235,218 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1995,608,0.375,26633,233 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,2,1,0.375,6319,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,677,495,0.222222222222222,27767,191 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1400,172,0.375,236517,172 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,23,3,0.25,3079,3 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",7,16,25,0.428571428571429,1070,2 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",7,16,21,0.285714285714286,980,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",7,4,25,0.571428571428571,971,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,154,180,0.555555555555556,5638,45 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,175,226,0.555555555555556,6958,89 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,444,501,0.428571428571429,21907,75 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,257,274,0.375,13053,16 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,3,2,0.428571428571429,7856,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,2,0,0.428571428571429,1974,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1052,61,0.285714285714286,22411,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,10,0.571428571428571,959,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,7,17,0.571428571428571,974,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.428571428571429,96,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,825,500,0,20640,179 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,8646,456,0,212479,166 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,304,34,0,8467,14 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,54,167,0.6,11177,11 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,170,170,0.6,13857,52 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,10,0.555555555555556,497,2 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,10,0.555555555555556,463,1 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,10,0.555555555555556,433,1 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,8,0.444444444444444,281,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,8,11,0.333333333333333,2285,5 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,8,12,0.444444444444444,2491,6 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,6,5,0.25,2254,0 +"Denbighshire","518","Total service expenditure",60,204961.3455,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,12,6,0.333333333333333,2556,6 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3496,2492,0.444444444444444,49561,412 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,997,466,0.333333333333333,15376,24 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3098,1817,0.375,46235,218 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,906,492,0.375,26633,233 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,288,29,0.25,6319,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1228,586,0.444444444444444,27767,191 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1320,1415,0.375,236517,172 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,26,0.5,3079,3 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,36,60,0.555555555555556,1070,2 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,59,0.555555555555556,980,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,139,190,0.555555555555556,5638,45 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,211,278,0.555555555555556,6958,89 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,522,401,0.428571428571429,21907,75 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,268,308,0.5,13053,16 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,155,29,0.571428571428571,7856,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,38,19,0.285714285714286,1974,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,4,42,0.625,971,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1452,1304,0.428571428571429,22411,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,10,0.428571428571429,959,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,13,0.571428571428571,974,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,460,459,0.8,20640,179 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,87,62,0.4,8467,14 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,88,192,0.6,11177,11 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,108,218,0.6,13857,52 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,16,0.555555555555556,497,2 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.555555555555556,463,1 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,16,0.444444444444444,433,1 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,71,78,0.666666666666667,2285,5 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,71,78,0.555555555555556,2491,6 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,71,70,0.5,2254,0 +"Flintshire","520","Net current expenditure",72,287671.19975255,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,70,0.5,2556,6 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3496,2492,0.444444444444444,49561,412 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,997,466,0.333333333333333,15376,24 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3098,1817,0.375,46235,218 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,906,492,0.375,26633,233 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,288,29,0.25,6319,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1228,586,0.444444444444444,27767,191 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1320,1415,0.375,236517,172 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,26,0.5,3079,3 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,36,60,0.555555555555556,1070,2 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,59,0.555555555555556,980,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,139,190,0.555555555555556,5638,45 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,211,278,0.555555555555556,6958,89 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,522,401,0.428571428571429,21907,75 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,268,308,0.5,13053,16 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,155,29,0.571428571428571,7856,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,38,19,0.285714285714286,1974,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,4,42,0.625,971,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1452,1304,0.428571428571429,22411,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,10,0.428571428571429,959,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,13,0.571428571428571,974,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,460,459,0.8,20640,179 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,87,62,0.4,8467,14 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,88,192,0.6,11177,11 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,108,218,0.6,13857,52 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,16,0.555555555555556,497,2 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.555555555555556,463,1 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,16,0.444444444444444,433,1 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,71,78,0.666666666666667,2285,5 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,71,78,0.555555555555556,2491,6 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,71,70,0.5,2254,0 +"Flintshire","520","Non-school expenditure",2,4467.63742435,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,70,0.5,2556,6 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3496,2492,0.444444444444444,49561,412 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,997,466,0.333333333333333,15376,24 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3098,1817,0.375,46235,218 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,906,492,0.375,26633,233 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,288,29,0.25,6319,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1228,586,0.444444444444444,27767,191 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1320,1415,0.375,236517,172 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,26,0.5,3079,3 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,36,60,0.555555555555556,1070,2 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,59,0.555555555555556,980,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,139,190,0.555555555555556,5638,45 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,211,278,0.555555555555556,6958,89 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,522,401,0.428571428571429,21907,75 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,268,308,0.5,13053,16 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,155,29,0.571428571428571,7856,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,38,19,0.285714285714286,1974,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,4,42,0.625,971,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1452,1304,0.428571428571429,22411,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,10,0.428571428571429,959,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,13,0.571428571428571,974,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,460,459,0.8,20640,179 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,87,62,0.4,8467,14 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,88,192,0.6,11177,11 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,108,218,0.6,13857,52 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,16,0.555555555555556,497,2 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.555555555555556,463,1 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,16,0.444444444444444,433,1 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,71,78,0.666666666666667,2285,5 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,71,78,0.555555555555556,2491,6 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,71,70,0.5,2254,0 +"Flintshire","520","Personal social services - children and families",6,18297.70682605,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,70,0.5,2556,6 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3496,2492,0.444444444444444,49561,412 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,997,466,0.333333333333333,15376,24 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3098,1817,0.375,46235,218 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,906,492,0.375,26633,233 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,288,29,0.25,6319,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1228,586,0.444444444444444,27767,191 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1320,1415,0.375,236517,172 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,26,0.5,3079,3 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,36,60,0.555555555555556,1070,2 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,59,0.555555555555556,980,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,139,190,0.555555555555556,5638,45 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,211,278,0.555555555555556,6958,89 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,522,401,0.428571428571429,21907,75 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,268,308,0.5,13053,16 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,155,29,0.571428571428571,7856,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,38,19,0.285714285714286,1974,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,4,42,0.625,971,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1452,1304,0.428571428571429,22411,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,10,0.428571428571429,959,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,13,0.571428571428571,974,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,460,459,0.8,20640,179 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,87,62,0.4,8467,14 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,88,192,0.6,11177,11 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,108,218,0.6,13857,52 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,16,0.555555555555556,497,2 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.555555555555556,463,1 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,16,0.444444444444444,433,1 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,71,78,0.666666666666667,2285,5 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,71,78,0.555555555555556,2491,6 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,71,70,0.5,2254,0 +"Flintshire","520","Schools expenditure (including delegated and non-delegated funding)",1,116113.41193755,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,70,0.5,2556,6 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3496,2492,0.444444444444444,49561,412 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,997,466,0.333333333333333,15376,24 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,3098,1817,0.375,46235,218 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,906,492,0.375,26633,233 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,288,29,0.25,6319,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1228,586,0.444444444444444,27767,191 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1320,1415,0.375,236517,172 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,26,0.5,3079,3 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,36,60,0.555555555555556,1070,2 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,59,0.555555555555556,980,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,139,190,0.555555555555556,5638,45 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,211,278,0.555555555555556,6958,89 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,522,401,0.428571428571429,21907,75 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,268,308,0.5,13053,16 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,155,29,0.571428571428571,7856,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,38,19,0.285714285714286,1974,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,4,42,0.625,971,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1452,1304,0.428571428571429,22411,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,10,0.428571428571429,959,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,13,0.571428571428571,974,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0.142857142857143,96,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,460,459,0.8,20640,179 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,87,62,0.4,8467,14 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,88,192,0.6,11177,11 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,108,218,0.6,13857,52 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,16,0.555555555555556,497,2 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.555555555555556,463,1 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,16,0.444444444444444,433,1 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,14,0.555555555555556,281,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,71,78,0.666666666666667,2285,5 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,71,78,0.555555555555556,2491,6 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,71,70,0.5,2254,0 +"Flintshire","520","Total service expenditure",60,278165.45065255,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,70,0.5,2556,6 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2645,1471,0.444444444444444,49561,412 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1080,365,0.333333333333333,15376,24 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2529,1426,0.375,46235,218 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,2610,1083,0.375,26633,233 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,34,0,0.125,6319,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1025,1033,0.333333333333333,27767,191 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,531,980,0.5,21907,75 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,494,0,0,7856,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,28,48,0.375,3079,3 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,100,171,0.666666666666667,5638,45 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,132,284,0.777777777777778,6958,89 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,260,611,0.625,13053,16 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,15,0,0,1974,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,5629,2823,0.285714285714286,236517,172 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,24,26,0.375,1070,2 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,24,26,0.5,980,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,26,0.375,971,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,2058,352,0.428571428571429,22411,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,15,20,0.428571428571429,959,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,74,11,0.428571428571429,974,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",6,0,4,0.666666666666667,96,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,546,766,0.6,20640,179 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,12603,8326,0.2,212479,166 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,450,329,0.2,8467,14 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,155,289,0.6,11177,11 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,325,337,0.4,13857,52 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,20,0.555555555555556,497,2 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.666666666666667,463,1 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,15,0.666666666666667,433,1 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,12,0.444444444444444,281,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,54,97,0.555555555555556,2285,5 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,97,0.666666666666667,2491,6 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,48,97,0.5,2254,0 +"Gwynedd","514","Net current expenditure",72,257218.29105995,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,68,97,0.5,2556,6 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2645,1471,0.444444444444444,49561,412 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1080,365,0.333333333333333,15376,24 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2529,1426,0.375,46235,218 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,2610,1083,0.375,26633,233 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,34,0,0.125,6319,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1025,1033,0.333333333333333,27767,191 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,531,980,0.5,21907,75 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,494,0,0,7856,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,28,48,0.375,3079,3 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,100,171,0.666666666666667,5638,45 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,132,284,0.777777777777778,6958,89 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,260,611,0.625,13053,16 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,15,0,0,1974,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,5629,2823,0.285714285714286,236517,172 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,24,26,0.375,1070,2 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,24,26,0.5,980,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,26,0.375,971,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,2058,352,0.428571428571429,22411,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,15,20,0.428571428571429,959,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,74,11,0.428571428571429,974,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",6,0,4,0.666666666666667,96,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,546,766,0.6,20640,179 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,12603,8326,0.2,212479,166 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,450,329,0.2,8467,14 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,155,289,0.6,11177,11 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,325,337,0.4,13857,52 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,20,0.555555555555556,497,2 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.666666666666667,463,1 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,15,0.666666666666667,433,1 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,12,0.444444444444444,281,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,54,97,0.555555555555556,2285,5 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,97,0.666666666666667,2491,6 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,48,97,0.5,2254,0 +"Gwynedd","514","Non-school expenditure",2,4037.0667726,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,68,97,0.5,2556,6 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2645,1471,0.444444444444444,49561,412 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1080,365,0.333333333333333,15376,24 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2529,1426,0.375,46235,218 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,2610,1083,0.375,26633,233 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,34,0,0.125,6319,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1025,1033,0.333333333333333,27767,191 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,531,980,0.5,21907,75 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,494,0,0,7856,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,28,48,0.375,3079,3 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,100,171,0.666666666666667,5638,45 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,132,284,0.777777777777778,6958,89 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,260,611,0.625,13053,16 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,15,0,0,1974,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,5629,2823,0.285714285714286,236517,172 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,24,26,0.375,1070,2 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,24,26,0.5,980,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,26,0.375,971,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,2058,352,0.428571428571429,22411,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,15,20,0.428571428571429,959,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,74,11,0.428571428571429,974,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",6,0,4,0.666666666666667,96,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,546,766,0.6,20640,179 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,12603,8326,0.2,212479,166 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,450,329,0.2,8467,14 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,155,289,0.6,11177,11 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,325,337,0.4,13857,52 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,20,0.555555555555556,497,2 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.666666666666667,463,1 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,15,0.666666666666667,433,1 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,12,0.444444444444444,281,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,54,97,0.555555555555556,2285,5 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,97,0.666666666666667,2491,6 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,48,97,0.5,2254,0 +"Gwynedd","514","Personal social services - children and families",6,18296.7023445,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,68,97,0.5,2556,6 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2645,1471,0.444444444444444,49561,412 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1080,365,0.333333333333333,15376,24 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2529,1426,0.375,46235,218 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,2610,1083,0.375,26633,233 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,34,0,0.125,6319,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1025,1033,0.333333333333333,27767,191 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,531,980,0.5,21907,75 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,494,0,0,7856,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,28,48,0.375,3079,3 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,100,171,0.666666666666667,5638,45 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,132,284,0.777777777777778,6958,89 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,260,611,0.625,13053,16 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,15,0,0,1974,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,5629,2823,0.285714285714286,236517,172 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,24,26,0.375,1070,2 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,24,26,0.5,980,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,26,0.375,971,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,2058,352,0.428571428571429,22411,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,15,20,0.428571428571429,959,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,74,11,0.428571428571429,974,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",6,0,4,0.666666666666667,96,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,546,766,0.6,20640,179 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,12603,8326,0.2,212479,166 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,450,329,0.2,8467,14 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,155,289,0.6,11177,11 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,325,337,0.4,13857,52 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,20,0.555555555555556,497,2 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.666666666666667,463,1 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,15,0.666666666666667,433,1 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,12,0.444444444444444,281,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,54,97,0.555555555555556,2285,5 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,97,0.666666666666667,2491,6 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,48,97,0.5,2254,0 +"Gwynedd","514","Schools expenditure (including delegated and non-delegated funding)",1,92974.6234401,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,68,97,0.5,2556,6 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2645,1471,0.444444444444444,49561,412 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1080,365,0.333333333333333,15376,24 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2529,1426,0.375,46235,218 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,2610,1083,0.375,26633,233 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,34,0,0.125,6319,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1025,1033,0.333333333333333,27767,191 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,531,980,0.5,21907,75 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,494,0,0,7856,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,28,48,0.375,3079,3 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,100,171,0.666666666666667,5638,45 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,132,284,0.777777777777778,6958,89 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,260,611,0.625,13053,16 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,15,0,0,1974,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,5629,2823,0.285714285714286,236517,172 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,24,26,0.375,1070,2 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,24,26,0.5,980,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,22,26,0.375,971,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,2058,352,0.428571428571429,22411,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,15,20,0.428571428571429,959,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,74,11,0.428571428571429,974,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",6,0,4,0.666666666666667,96,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,546,766,0.6,20640,179 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,12603,8326,0.2,212479,166 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,450,329,0.2,8467,14 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,155,289,0.6,11177,11 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,325,337,0.4,13857,52 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,8,20,0.555555555555556,497,2 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,16,0.666666666666667,463,1 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,15,0.666666666666667,433,1 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,3,12,0.444444444444444,281,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,54,97,0.555555555555556,2285,5 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,54,97,0.666666666666667,2491,6 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,48,97,0.5,2254,0 +"Gwynedd","514","Total service expenditure",60,249148.27622115,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,68,97,0.5,2556,6 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1988,1317,0.444444444444444,49561,412 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,565,257,0.333333333333333,15376,24 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1851,1595,0.625,46235,218 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,762,801,0.625,26633,233 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,0,0,0.375,6319,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,762,459,0.444444444444444,27767,191 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,585,513,0.625,21907,75 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,213,340,0.444444444444444,13053,16 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,177,0,0.375,7856,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,0,0,0.5,1974,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2745,1271,0.375,236517,172 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,30,25,0.5,3079,3 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,30,61,0.444444444444444,1070,2 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,46,0.444444444444444,980,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,28,61,0.444444444444444,971,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,96,147,0.777777777777778,5638,45 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,109,153,0.666666666666667,6958,89 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1786,795,0.428571428571429,22411,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,2,5,0.571428571428571,959,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,18,9,0.428571428571429,974,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,264,507,0.8,20640,179 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10011,396,0,212479,166 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,470,28,0,8467,14 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,11,88,0.8,11177,11 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,52,113,0.6,13857,52 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,5,7,0.444444444444444,497,2 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,4,0.444444444444444,463,1 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,5,4,0.444444444444444,433,1 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,3,0.333333333333333,281,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,21,15,0.333333333333333,2285,5 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,22,0.444444444444444,2491,6 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,22,0.375,2254,0 +"Isle of Anglesey","512","Net current expenditure",72,148132.45255,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,23,0.5,2556,6 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1988,1317,0.444444444444444,49561,412 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,565,257,0.333333333333333,15376,24 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1851,1595,0.625,46235,218 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,762,801,0.625,26633,233 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,0,0,0.375,6319,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,762,459,0.444444444444444,27767,191 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,585,513,0.625,21907,75 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,213,340,0.444444444444444,13053,16 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,177,0,0.375,7856,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,0,0,0.5,1974,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2745,1271,0.375,236517,172 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,30,25,0.5,3079,3 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,30,61,0.444444444444444,1070,2 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,46,0.444444444444444,980,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,28,61,0.444444444444444,971,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,96,147,0.777777777777778,5638,45 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,109,153,0.666666666666667,6958,89 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1786,795,0.428571428571429,22411,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,2,5,0.571428571428571,959,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,18,9,0.428571428571429,974,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,264,507,0.8,20640,179 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10011,396,0,212479,166 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,470,28,0,8467,14 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,11,88,0.8,11177,11 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,52,113,0.6,13857,52 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,5,7,0.444444444444444,497,2 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,4,0.444444444444444,463,1 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,5,4,0.444444444444444,433,1 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,3,0.333333333333333,281,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,21,15,0.333333333333333,2285,5 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,22,0.444444444444444,2491,6 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,22,0.375,2254,0 +"Isle of Anglesey","512","Non-school expenditure",2,2601.6642,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,23,0.5,2556,6 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1988,1317,0.444444444444444,49561,412 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,565,257,0.333333333333333,15376,24 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1851,1595,0.625,46235,218 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,762,801,0.625,26633,233 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,0,0,0.375,6319,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,762,459,0.444444444444444,27767,191 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,585,513,0.625,21907,75 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,213,340,0.444444444444444,13053,16 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,177,0,0.375,7856,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,0,0,0.5,1974,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2745,1271,0.375,236517,172 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,30,25,0.5,3079,3 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,30,61,0.444444444444444,1070,2 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,46,0.444444444444444,980,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,28,61,0.444444444444444,971,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,96,147,0.777777777777778,5638,45 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,109,153,0.666666666666667,6958,89 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1786,795,0.428571428571429,22411,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,2,5,0.571428571428571,959,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,18,9,0.428571428571429,974,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,264,507,0.8,20640,179 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10011,396,0,212479,166 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,470,28,0,8467,14 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,11,88,0.8,11177,11 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,52,113,0.6,13857,52 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,5,7,0.444444444444444,497,2 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,4,0.444444444444444,463,1 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,5,4,0.444444444444444,433,1 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,3,0.333333333333333,281,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,21,15,0.333333333333333,2285,5 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,22,0.444444444444444,2491,6 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,22,0.375,2254,0 +"Isle of Anglesey","512","Personal social services - children and families",6,9476.2,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,23,0.5,2556,6 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1988,1317,0.444444444444444,49561,412 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,565,257,0.333333333333333,15376,24 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1851,1595,0.625,46235,218 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,762,801,0.625,26633,233 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,0,0,0.375,6319,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,762,459,0.444444444444444,27767,191 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,585,513,0.625,21907,75 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,213,340,0.444444444444444,13053,16 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,177,0,0.375,7856,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,0,0,0.5,1974,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2745,1271,0.375,236517,172 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,30,25,0.5,3079,3 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,30,61,0.444444444444444,1070,2 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,46,0.444444444444444,980,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,28,61,0.444444444444444,971,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,96,147,0.777777777777778,5638,45 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,109,153,0.666666666666667,6958,89 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1786,795,0.428571428571429,22411,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,2,5,0.571428571428571,959,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,18,9,0.428571428571429,974,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,264,507,0.8,20640,179 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10011,396,0,212479,166 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,470,28,0,8467,14 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,11,88,0.8,11177,11 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,52,113,0.6,13857,52 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,5,7,0.444444444444444,497,2 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,4,0.444444444444444,463,1 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,5,4,0.444444444444444,433,1 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,3,0.333333333333333,281,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,21,15,0.333333333333333,2285,5 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,22,0.444444444444444,2491,6 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,22,0.375,2254,0 +"Isle of Anglesey","512","Schools expenditure (including delegated and non-delegated funding)",1,53408.47565,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,23,0.5,2556,6 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1988,1317,0.444444444444444,49561,412 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,565,257,0.333333333333333,15376,24 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1851,1595,0.625,46235,218 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,762,801,0.625,26633,233 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,0,0,0.375,6319,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,762,459,0.444444444444444,27767,191 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,585,513,0.625,21907,75 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,213,340,0.444444444444444,13053,16 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,177,0,0.375,7856,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,0,0,0.5,1974,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2745,1271,0.375,236517,172 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,30,25,0.5,3079,3 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,30,61,0.444444444444444,1070,2 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,46,0.444444444444444,980,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,28,61,0.444444444444444,971,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,96,147,0.777777777777778,5638,45 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,109,153,0.666666666666667,6958,89 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1786,795,0.428571428571429,22411,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,2,5,0.571428571428571,959,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,18,9,0.428571428571429,974,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,264,507,0.8,20640,179 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10011,396,0,212479,166 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,470,28,0,8467,14 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,11,88,0.8,11177,11 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,52,113,0.6,13857,52 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,5,7,0.444444444444444,497,2 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,5,4,0.444444444444444,463,1 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,5,4,0.444444444444444,433,1 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,3,0.333333333333333,281,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,21,15,0.333333333333333,2285,5 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,22,0.444444444444444,2491,6 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,22,0.375,2254,0 +"Isle of Anglesey","512","Total service expenditure",60,143865.2119,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,23,0.5,2556,6 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1037,802,0.444444444444444,49561,412 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,525,132,0.444444444444444,15376,24 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,901,696,0.5,46235,218 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,431,492,0.625,26633,233 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,66,133,0.5,6319,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,497,728,0.444444444444444,27767,191 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,431,393,0.5,21907,75 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,130,357,0.777777777777778,13053,16 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,66,122,0.5,7856,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,16,60,0.625,1974,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,805,3609,0.5,236517,172 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,54,0.5,3079,3 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,58,28,0.555555555555556,1070,2 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,26,0.555555555555556,980,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,27,27,0.555555555555556,971,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,170,130,0.555555555555556,5638,45 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,179,0.444444444444444,6958,89 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,380,73,0.285714285714286,22411,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,35,0.571428571428571,959,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,8,13,0.428571428571429,974,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,469,330,0.2,20640,179 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4787,6459,0.4,212479,166 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,218,247,0.4,8467,14 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,115,229,0.8,11177,11 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,122,283,0.8,13857,52 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,21,0.444444444444444,497,2 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,7,19,0.444444444444444,463,1 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,18,0.555555555555556,433,1 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,12,0.555555555555556,281,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,17,73,0.555555555555556,2285,5 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,74,0.555555555555556,2491,6 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,75,0.625,2254,0 +"Merthyr Tydfil","542","Net current expenditure",72,134977.55559725,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,61,76,0.5,2556,6 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1037,802,0.444444444444444,49561,412 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,525,132,0.444444444444444,15376,24 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,901,696,0.5,46235,218 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,431,492,0.625,26633,233 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,66,133,0.5,6319,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,497,728,0.444444444444444,27767,191 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,431,393,0.5,21907,75 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,130,357,0.777777777777778,13053,16 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,66,122,0.5,7856,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,16,60,0.625,1974,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,805,3609,0.5,236517,172 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,54,0.5,3079,3 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,58,28,0.555555555555556,1070,2 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,26,0.555555555555556,980,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,27,27,0.555555555555556,971,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,170,130,0.555555555555556,5638,45 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,179,0.444444444444444,6958,89 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,380,73,0.285714285714286,22411,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,35,0.571428571428571,959,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,8,13,0.428571428571429,974,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,469,330,0.2,20640,179 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4787,6459,0.4,212479,166 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,218,247,0.4,8467,14 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,115,229,0.8,11177,11 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,122,283,0.8,13857,52 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,21,0.444444444444444,497,2 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,7,19,0.444444444444444,463,1 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,18,0.555555555555556,433,1 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,12,0.555555555555556,281,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,17,73,0.555555555555556,2285,5 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,74,0.555555555555556,2491,6 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,75,0.625,2254,0 +"Merthyr Tydfil","542","Non-school expenditure",2,3214.73154725,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,61,76,0.5,2556,6 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1037,802,0.444444444444444,49561,412 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,525,132,0.444444444444444,15376,24 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,901,696,0.5,46235,218 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,431,492,0.625,26633,233 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,66,133,0.5,6319,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,497,728,0.444444444444444,27767,191 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,431,393,0.5,21907,75 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,130,357,0.777777777777778,13053,16 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,66,122,0.5,7856,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,16,60,0.625,1974,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,805,3609,0.5,236517,172 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,54,0.5,3079,3 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,58,28,0.555555555555556,1070,2 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,26,0.555555555555556,980,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,27,27,0.555555555555556,971,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,170,130,0.555555555555556,5638,45 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,179,0.444444444444444,6958,89 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,380,73,0.285714285714286,22411,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,35,0.571428571428571,959,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,8,13,0.428571428571429,974,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,469,330,0.2,20640,179 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4787,6459,0.4,212479,166 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,218,247,0.4,8467,14 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,115,229,0.8,11177,11 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,122,283,0.8,13857,52 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,21,0.444444444444444,497,2 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,7,19,0.444444444444444,463,1 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,18,0.555555555555556,433,1 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,12,0.555555555555556,281,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,17,73,0.555555555555556,2285,5 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,74,0.555555555555556,2491,6 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,75,0.625,2254,0 +"Merthyr Tydfil","542","Personal social services - children and families",6,12284.3851049,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,61,76,0.5,2556,6 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1037,802,0.444444444444444,49561,412 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,525,132,0.444444444444444,15376,24 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,901,696,0.5,46235,218 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,431,492,0.625,26633,233 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,66,133,0.5,6319,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,497,728,0.444444444444444,27767,191 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,431,393,0.5,21907,75 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,130,357,0.777777777777778,13053,16 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,66,122,0.5,7856,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,16,60,0.625,1974,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,805,3609,0.5,236517,172 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,54,0.5,3079,3 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,58,28,0.555555555555556,1070,2 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,26,0.555555555555556,980,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,27,27,0.555555555555556,971,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,170,130,0.555555555555556,5638,45 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,179,0.444444444444444,6958,89 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,380,73,0.285714285714286,22411,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,35,0.571428571428571,959,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,8,13,0.428571428571429,974,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,469,330,0.2,20640,179 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4787,6459,0.4,212479,166 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,218,247,0.4,8467,14 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,115,229,0.8,11177,11 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,122,283,0.8,13857,52 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,21,0.444444444444444,497,2 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,7,19,0.444444444444444,463,1 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,18,0.555555555555556,433,1 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,12,0.555555555555556,281,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,17,73,0.555555555555556,2285,5 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,74,0.555555555555556,2491,6 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,75,0.625,2254,0 +"Merthyr Tydfil","542","Schools expenditure (including delegated and non-delegated funding)",1,47982.8848638,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,61,76,0.5,2556,6 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1037,802,0.444444444444444,49561,412 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,525,132,0.444444444444444,15376,24 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,901,696,0.5,46235,218 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,431,492,0.625,26633,233 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,66,133,0.5,6319,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,497,728,0.444444444444444,27767,191 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,431,393,0.5,21907,75 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,130,357,0.777777777777778,13053,16 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,66,122,0.5,7856,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,16,60,0.625,1974,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,805,3609,0.5,236517,172 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,54,0.5,3079,3 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,58,28,0.555555555555556,1070,2 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,36,26,0.555555555555556,980,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,27,27,0.555555555555556,971,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,170,130,0.555555555555556,5638,45 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,176,179,0.444444444444444,6958,89 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,380,73,0.285714285714286,22411,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,5,35,0.571428571428571,959,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,8,13,0.428571428571429,974,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,469,330,0.2,20640,179 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4787,6459,0.4,212479,166 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,218,247,0.4,8467,14 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,115,229,0.8,11177,11 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,122,283,0.8,13857,52 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,9,21,0.444444444444444,497,2 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,7,19,0.444444444444444,463,1 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,6,18,0.555555555555556,433,1 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,12,0.555555555555556,281,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,17,73,0.555555555555556,2285,5 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,26,74,0.555555555555556,2491,6 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,26,75,0.625,2254,0 +"Merthyr Tydfil","542","Total service expenditure",60,132156.69168025,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,61,76,0.5,2556,6 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,412,465,0.555555555555556,49561,412 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,38,83,0.666666666666667,15376,24 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",6,327,350,0.666666666666667,26633,233 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",6,25,18,0.5,6319,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,421,298,0.555555555555556,27767,191 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,25,0.375,3079,3 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",7,319,478,0.714285714285714,46235,218 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,347,361,0.571428571428571,21907,75 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,43,157,0.75,13053,16 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,1353,1405,0.428571428571429,236517,172 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,81,38,0.625,1070,2 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,38,0.625,980,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,66,38,0.625,971,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",5,78,114,0.8,22411,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,6,9,0.428571428571429,959,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,23,73,0.571428571428571,974,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,11,69,0.571428571428571,96,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",7,85,169,0.714285714285714,5638,45 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",7,100,188,0.571428571428571,6958,89 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,311,285,0.6,20640,179 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1925,1842,0.6,212479,166 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,105,86,0.6,8467,14 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,35,138,0.8,11177,11 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,59,163,0.6,13857,52 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,3,8,0.555555555555556,497,2 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,3,5,0.555555555555556,463,1 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,3,4,0.555555555555556,433,1 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,2,0.555555555555556,281,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",7,28,48,0.428571428571429,2285,5 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",7,41,48,0.428571428571429,2491,6 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,26,48,0.428571428571429,2254,0 +"Monmouthshire","548","Net current expenditure",72,164583.507751,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,54,0.333333333333333,2556,6 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,412,465,0.555555555555556,49561,412 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,38,83,0.666666666666667,15376,24 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",6,327,350,0.666666666666667,26633,233 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",6,25,18,0.5,6319,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,421,298,0.555555555555556,27767,191 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,25,0.375,3079,3 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",7,319,478,0.714285714285714,46235,218 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,347,361,0.571428571428571,21907,75 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,43,157,0.75,13053,16 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,1353,1405,0.428571428571429,236517,172 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,81,38,0.625,1070,2 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,38,0.625,980,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,66,38,0.625,971,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",5,78,114,0.8,22411,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,6,9,0.428571428571429,959,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,23,73,0.571428571428571,974,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,11,69,0.571428571428571,96,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",7,85,169,0.714285714285714,5638,45 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",7,100,188,0.571428571428571,6958,89 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,311,285,0.6,20640,179 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1925,1842,0.6,212479,166 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,105,86,0.6,8467,14 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,35,138,0.8,11177,11 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,59,163,0.6,13857,52 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,3,8,0.555555555555556,497,2 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,3,5,0.555555555555556,463,1 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,3,4,0.555555555555556,433,1 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,2,0.555555555555556,281,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",7,28,48,0.428571428571429,2285,5 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",7,41,48,0.428571428571429,2491,6 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,26,48,0.428571428571429,2254,0 +"Monmouthshire","548","Non-school expenditure",2,4082.573903,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,54,0.333333333333333,2556,6 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,412,465,0.555555555555556,49561,412 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,38,83,0.666666666666667,15376,24 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",6,327,350,0.666666666666667,26633,233 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",6,25,18,0.5,6319,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,421,298,0.555555555555556,27767,191 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,25,0.375,3079,3 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",7,319,478,0.714285714285714,46235,218 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,347,361,0.571428571428571,21907,75 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,43,157,0.75,13053,16 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,1353,1405,0.428571428571429,236517,172 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,81,38,0.625,1070,2 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,38,0.625,980,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,66,38,0.625,971,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",5,78,114,0.8,22411,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,6,9,0.428571428571429,959,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,23,73,0.571428571428571,974,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,11,69,0.571428571428571,96,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",7,85,169,0.714285714285714,5638,45 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",7,100,188,0.571428571428571,6958,89 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,311,285,0.6,20640,179 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1925,1842,0.6,212479,166 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,105,86,0.6,8467,14 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,35,138,0.8,11177,11 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,59,163,0.6,13857,52 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,3,8,0.555555555555556,497,2 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,3,5,0.555555555555556,463,1 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,3,4,0.555555555555556,433,1 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,2,0.555555555555556,281,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",7,28,48,0.428571428571429,2285,5 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",7,41,48,0.428571428571429,2491,6 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,26,48,0.428571428571429,2254,0 +"Monmouthshire","548","Personal social services - children and families",6,10601.4770955,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,54,0.333333333333333,2556,6 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,412,465,0.555555555555556,49561,412 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,38,83,0.666666666666667,15376,24 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",6,327,350,0.666666666666667,26633,233 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",6,25,18,0.5,6319,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,421,298,0.555555555555556,27767,191 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,25,0.375,3079,3 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",7,319,478,0.714285714285714,46235,218 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,347,361,0.571428571428571,21907,75 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,43,157,0.75,13053,16 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,1353,1405,0.428571428571429,236517,172 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,81,38,0.625,1070,2 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,38,0.625,980,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,66,38,0.625,971,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",5,78,114,0.8,22411,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,6,9,0.428571428571429,959,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,23,73,0.571428571428571,974,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,11,69,0.571428571428571,96,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",7,85,169,0.714285714285714,5638,45 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",7,100,188,0.571428571428571,6958,89 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,311,285,0.6,20640,179 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1925,1842,0.6,212479,166 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,105,86,0.6,8467,14 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,35,138,0.8,11177,11 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,59,163,0.6,13857,52 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,3,8,0.555555555555556,497,2 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,3,5,0.555555555555556,463,1 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,3,4,0.555555555555556,433,1 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,2,0.555555555555556,281,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",7,28,48,0.428571428571429,2285,5 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",7,41,48,0.428571428571429,2491,6 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,26,48,0.428571428571429,2254,0 +"Monmouthshire","548","Schools expenditure (including delegated and non-delegated funding)",1,61592.1961105,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,54,0.333333333333333,2556,6 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,412,465,0.555555555555556,49561,412 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,38,83,0.666666666666667,15376,24 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",6,327,350,0.666666666666667,26633,233 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",6,25,18,0.5,6319,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,421,298,0.555555555555556,27767,191 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,22,25,0.375,3079,3 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",7,319,478,0.714285714285714,46235,218 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",7,347,361,0.571428571428571,21907,75 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",8,43,157,0.75,13053,16 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",7,1353,1405,0.428571428571429,236517,172 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,81,38,0.625,1070,2 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,38,0.625,980,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,66,38,0.625,971,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",5,78,114,0.8,22411,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,6,9,0.428571428571429,959,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,23,73,0.571428571428571,974,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,11,69,0.571428571428571,96,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",7,85,169,0.714285714285714,5638,45 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",7,100,188,0.571428571428571,6958,89 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,311,285,0.6,20640,179 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1925,1842,0.6,212479,166 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,105,86,0.6,8467,14 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,35,138,0.8,11177,11 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,59,163,0.6,13857,52 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,3,8,0.555555555555556,497,2 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,3,5,0.555555555555556,463,1 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,3,4,0.555555555555556,433,1 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,2,2,0.555555555555556,281,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",7,28,48,0.428571428571429,2285,5 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",7,41,48,0.428571428571429,2491,6 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",7,26,48,0.428571428571429,2254,0 +"Monmouthshire","548","Total service expenditure",60,158790.988359,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,59,54,0.333333333333333,2556,6 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1814,1412,0.666666666666667,49561,412 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,310,231,0.666666666666667,15376,24 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,296,1286,0.625,46235,218 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,845,1216,0.5,26633,233 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,186,72,0.25,6319,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1048,1605,0.333333333333333,27767,191 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,1214,0.5,21907,75 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,456,962,0.666666666666667,13053,16 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",6,6116,6071,0.5,236517,172 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",6,85,137,0.333333333333333,3079,3 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,567,18,0.428571428571429,22411,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",6,26,31,0.5,1070,2 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",6,26,31,0.5,980,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",6,20,31,0.5,971,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,867,1499,0.6,20640,179 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5005,1872,0.6,212479,166 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,225,132,0.6,8467,14 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,28,0.666666666666667,497,2 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,26,0.555555555555556,463,1 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,25,0.444444444444444,433,1 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,5,16,0.444444444444444,281,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,27,0.333333333333333,2285,5 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,33,29,0.333333333333333,2491,6 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,27,30,0.625,2254,0 +"Neath Port Talbot","534","Net current expenditure",72,313861.5969391,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,31,0.333333333333333,2556,6 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1814,1412,0.666666666666667,49561,412 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,310,231,0.666666666666667,15376,24 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,296,1286,0.625,46235,218 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,845,1216,0.5,26633,233 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,186,72,0.25,6319,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1048,1605,0.333333333333333,27767,191 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,1214,0.5,21907,75 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,456,962,0.666666666666667,13053,16 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",6,6116,6071,0.5,236517,172 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",6,85,137,0.333333333333333,3079,3 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,567,18,0.428571428571429,22411,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",6,26,31,0.5,1070,2 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",6,26,31,0.5,980,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",6,20,31,0.5,971,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,867,1499,0.6,20640,179 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5005,1872,0.6,212479,166 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,225,132,0.6,8467,14 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,28,0.666666666666667,497,2 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,26,0.555555555555556,463,1 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,25,0.444444444444444,433,1 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,5,16,0.444444444444444,281,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,27,0.333333333333333,2285,5 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,33,29,0.333333333333333,2491,6 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,27,30,0.625,2254,0 +"Neath Port Talbot","534","Non-school expenditure",2,4480.5035045,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,31,0.333333333333333,2556,6 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1814,1412,0.666666666666667,49561,412 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,310,231,0.666666666666667,15376,24 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,296,1286,0.625,46235,218 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,845,1216,0.5,26633,233 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,186,72,0.25,6319,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1048,1605,0.333333333333333,27767,191 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,1214,0.5,21907,75 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,456,962,0.666666666666667,13053,16 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",6,6116,6071,0.5,236517,172 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",6,85,137,0.333333333333333,3079,3 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,567,18,0.428571428571429,22411,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",6,26,31,0.5,1070,2 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",6,26,31,0.5,980,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",6,20,31,0.5,971,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,867,1499,0.6,20640,179 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5005,1872,0.6,212479,166 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,225,132,0.6,8467,14 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,28,0.666666666666667,497,2 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,26,0.555555555555556,463,1 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,25,0.444444444444444,433,1 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,5,16,0.444444444444444,281,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,27,0.333333333333333,2285,5 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,33,29,0.333333333333333,2491,6 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,27,30,0.625,2254,0 +"Neath Port Talbot","534","Personal social services - children and families",6,26409.6846025,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,31,0.333333333333333,2556,6 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1814,1412,0.666666666666667,49561,412 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,310,231,0.666666666666667,15376,24 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,296,1286,0.625,46235,218 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,845,1216,0.5,26633,233 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,186,72,0.25,6319,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1048,1605,0.333333333333333,27767,191 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,1214,0.5,21907,75 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,456,962,0.666666666666667,13053,16 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",6,6116,6071,0.5,236517,172 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",6,85,137,0.333333333333333,3079,3 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,567,18,0.428571428571429,22411,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",6,26,31,0.5,1070,2 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",6,26,31,0.5,980,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",6,20,31,0.5,971,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,867,1499,0.6,20640,179 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5005,1872,0.6,212479,166 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,225,132,0.6,8467,14 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,28,0.666666666666667,497,2 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,26,0.555555555555556,463,1 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,25,0.444444444444444,433,1 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,5,16,0.444444444444444,281,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,27,0.333333333333333,2285,5 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,33,29,0.333333333333333,2491,6 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,27,30,0.625,2254,0 +"Neath Port Talbot","534","Schools expenditure (including delegated and non-delegated funding)",1,110431.7674115,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,31,0.333333333333333,2556,6 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1814,1412,0.666666666666667,49561,412 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,310,231,0.666666666666667,15376,24 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,296,1286,0.625,46235,218 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,845,1216,0.5,26633,233 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,186,72,0.25,6319,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1048,1605,0.333333333333333,27767,191 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,1214,0.5,21907,75 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,456,962,0.666666666666667,13053,16 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",6,6116,6071,0.5,236517,172 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",6,85,137,0.333333333333333,3079,3 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,567,18,0.428571428571429,22411,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",6,26,31,0.5,1070,2 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",6,26,31,0.5,980,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",6,20,31,0.5,971,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,867,1499,0.6,20640,179 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5005,1872,0.6,212479,166 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,225,132,0.6,8467,14 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,28,0.666666666666667,497,2 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,8,26,0.555555555555556,463,1 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,7,25,0.444444444444444,433,1 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,5,16,0.444444444444444,281,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,27,0.333333333333333,2285,5 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,33,29,0.333333333333333,2491,6 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,27,30,0.625,2254,0 +"Neath Port Talbot","534","Total service expenditure",60,305326.0627891,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,31,31,0.333333333333333,2556,6 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1947,2018,0.555555555555556,49561,412 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,450,502,0.444444444444444,15376,24 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1513,1744,0.5,46235,218 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1480,1428,0.625,26633,233 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,266,59,0.375,6319,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1792,1609,0.555555555555556,27767,191 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,508,1192,0.625,21907,75 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,16,1030,0.777777777777778,13053,16 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1284,20,0.25,7856,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,2,9,0.375,1974,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,4122,3280,0.5,236517,172 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,53,59,0.5,3079,3 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,26,51,0.555555555555556,1070,2 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,26,46,0.555555555555556,980,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,34,0.555555555555556,971,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,281,55,0.555555555555556,5638,45 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,421,426,0.444444444444444,6958,89 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,232,384,0.428571428571429,22411,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,45,0.571428571428571,959,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,29,0.571428571428571,974,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.285714285714286,96,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1391,1212,0.4,20640,179 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,16241,2144,0.4,212479,166 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,601,138,0.2,8467,14 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,398,1155,0.6,11177,11 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,585,1214,0.6,13857,52 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,29,0.555555555555556,497,2 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,13,28,0.555555555555556,463,1 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,24,0.555555555555556,433,1 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,17,0.777777777777778,281,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,173,0.777777777777778,2285,5 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,39,173,0.777777777777778,2491,6 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,168,0.625,2254,0 +"Newport","550","Net current expenditure",72,312518.60084805,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,146,168,0.833333333333333,2556,6 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1947,2018,0.555555555555556,49561,412 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,450,502,0.444444444444444,15376,24 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1513,1744,0.5,46235,218 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1480,1428,0.625,26633,233 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,266,59,0.375,6319,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1792,1609,0.555555555555556,27767,191 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,508,1192,0.625,21907,75 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,16,1030,0.777777777777778,13053,16 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1284,20,0.25,7856,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,2,9,0.375,1974,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,4122,3280,0.5,236517,172 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,53,59,0.5,3079,3 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,26,51,0.555555555555556,1070,2 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,26,46,0.555555555555556,980,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,34,0.555555555555556,971,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,281,55,0.555555555555556,5638,45 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,421,426,0.444444444444444,6958,89 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,232,384,0.428571428571429,22411,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,45,0.571428571428571,959,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,29,0.571428571428571,974,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.285714285714286,96,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1391,1212,0.4,20640,179 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,16241,2144,0.4,212479,166 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,601,138,0.2,8467,14 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,398,1155,0.6,11177,11 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,585,1214,0.6,13857,52 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,29,0.555555555555556,497,2 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,13,28,0.555555555555556,463,1 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,24,0.555555555555556,433,1 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,17,0.777777777777778,281,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,173,0.777777777777778,2285,5 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,39,173,0.777777777777778,2491,6 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,168,0.625,2254,0 +"Newport","550","Non-school expenditure",2,5818.361782,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,146,168,0.833333333333333,2556,6 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1947,2018,0.555555555555556,49561,412 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,450,502,0.444444444444444,15376,24 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1513,1744,0.5,46235,218 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1480,1428,0.625,26633,233 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,266,59,0.375,6319,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1792,1609,0.555555555555556,27767,191 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,508,1192,0.625,21907,75 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,16,1030,0.777777777777778,13053,16 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1284,20,0.25,7856,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,2,9,0.375,1974,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,4122,3280,0.5,236517,172 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,53,59,0.5,3079,3 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,26,51,0.555555555555556,1070,2 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,26,46,0.555555555555556,980,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,34,0.555555555555556,971,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,281,55,0.555555555555556,5638,45 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,421,426,0.444444444444444,6958,89 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,232,384,0.428571428571429,22411,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,45,0.571428571428571,959,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,29,0.571428571428571,974,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.285714285714286,96,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1391,1212,0.4,20640,179 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,16241,2144,0.4,212479,166 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,601,138,0.2,8467,14 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,398,1155,0.6,11177,11 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,585,1214,0.6,13857,52 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,29,0.555555555555556,497,2 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,13,28,0.555555555555556,463,1 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,24,0.555555555555556,433,1 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,17,0.777777777777778,281,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,173,0.777777777777778,2285,5 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,39,173,0.777777777777778,2491,6 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,168,0.625,2254,0 +"Newport","550","Personal social services - children and families",6,29173.6507529,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,146,168,0.833333333333333,2556,6 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1947,2018,0.555555555555556,49561,412 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,450,502,0.444444444444444,15376,24 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1513,1744,0.5,46235,218 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1480,1428,0.625,26633,233 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,266,59,0.375,6319,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1792,1609,0.555555555555556,27767,191 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,508,1192,0.625,21907,75 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,16,1030,0.777777777777778,13053,16 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1284,20,0.25,7856,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,2,9,0.375,1974,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,4122,3280,0.5,236517,172 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,53,59,0.5,3079,3 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,26,51,0.555555555555556,1070,2 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,26,46,0.555555555555556,980,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,34,0.555555555555556,971,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,281,55,0.555555555555556,5638,45 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,421,426,0.444444444444444,6958,89 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,232,384,0.428571428571429,22411,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,45,0.571428571428571,959,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,29,0.571428571428571,974,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.285714285714286,96,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1391,1212,0.4,20640,179 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,16241,2144,0.4,212479,166 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,601,138,0.2,8467,14 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,398,1155,0.6,11177,11 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,585,1214,0.6,13857,52 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,29,0.555555555555556,497,2 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,13,28,0.555555555555556,463,1 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,24,0.555555555555556,433,1 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,17,0.777777777777778,281,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,173,0.777777777777778,2285,5 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,39,173,0.777777777777778,2491,6 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,168,0.625,2254,0 +"Newport","550","Schools expenditure (including delegated and non-delegated funding)",1,119185.3887746,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,146,168,0.833333333333333,2556,6 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1947,2018,0.555555555555556,49561,412 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,450,502,0.444444444444444,15376,24 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1513,1744,0.5,46235,218 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1480,1428,0.625,26633,233 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,266,59,0.375,6319,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1792,1609,0.555555555555556,27767,191 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,508,1192,0.625,21907,75 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,16,1030,0.777777777777778,13053,16 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1284,20,0.25,7856,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,2,9,0.375,1974,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,4122,3280,0.5,236517,172 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,53,59,0.5,3079,3 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,26,51,0.555555555555556,1070,2 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,26,46,0.555555555555556,980,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,12,34,0.555555555555556,971,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,281,55,0.555555555555556,5638,45 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,421,426,0.444444444444444,6958,89 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,232,384,0.428571428571429,22411,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,45,0.571428571428571,959,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,29,0.571428571428571,974,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,2,0.285714285714286,96,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1391,1212,0.4,20640,179 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,16241,2144,0.4,212479,166 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,601,138,0.2,8467,14 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,398,1155,0.6,11177,11 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,585,1214,0.6,13857,52 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,29,0.555555555555556,497,2 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,13,28,0.555555555555556,463,1 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,13,24,0.555555555555556,433,1 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,17,0.777777777777778,281,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,26,173,0.777777777777778,2285,5 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,39,173,0.777777777777778,2491,6 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,168,0.625,2254,0 +"Newport","550","Total service expenditure",60,304627.77201605,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,146,168,0.833333333333333,2556,6 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2865,1262,0.444444444444444,49561,412 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,173,186,0.222222222222222,15376,24 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2333,1405,0.5,46235,218 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,233,1057,0.75,26633,233 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,289,0,0.25,6319,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,522,1008,0.666666666666667,27767,191 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,75,987,0.833333333333333,21907,75 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,17,895,0.857142857142857,13053,16 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,447,0,0,7856,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,14,0,0.166666666666667,1974,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1032,785,0.5,236517,172 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,20,0.5,3079,3 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,24,4,0.333333333333333,1070,2 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,13,4,0.333333333333333,980,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,18,4,0.222222222222222,971,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,132,164,0.666666666666667,5638,45 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,158,172,0.666666666666667,6958,89 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,199,348,0.428571428571429,22411,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,20,7,0.428571428571429,959,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,23,0.428571428571429,974,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,536,1035,0.8,20640,179 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4037,166,0.2,212479,166 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,258,14,0.2,8467,14 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,228,889,0.8,11177,11 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,304,909,0.8,13857,52 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,18,0.333333333333333,497,2 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,18,0.555555555555556,463,1 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,16,17,0.555555555555556,433,1 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,12,8,0.333333333333333,281,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,62,60,0.555555555555556,2285,5 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,88,60,0.555555555555556,2491,6 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,57,93,0.5,2254,0 +"Pembrokeshire","528","Net current expenditure",72,241336.5716715,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,94,93,0.5,2556,6 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2865,1262,0.444444444444444,49561,412 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,173,186,0.222222222222222,15376,24 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2333,1405,0.5,46235,218 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,233,1057,0.75,26633,233 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,289,0,0.25,6319,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,522,1008,0.666666666666667,27767,191 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,75,987,0.833333333333333,21907,75 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,17,895,0.857142857142857,13053,16 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,447,0,0,7856,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,14,0,0.166666666666667,1974,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1032,785,0.5,236517,172 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,20,0.5,3079,3 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,24,4,0.333333333333333,1070,2 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,13,4,0.333333333333333,980,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,18,4,0.222222222222222,971,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,132,164,0.666666666666667,5638,45 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,158,172,0.666666666666667,6958,89 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,199,348,0.428571428571429,22411,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,20,7,0.428571428571429,959,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,23,0.428571428571429,974,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,536,1035,0.8,20640,179 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4037,166,0.2,212479,166 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,258,14,0.2,8467,14 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,228,889,0.8,11177,11 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,304,909,0.8,13857,52 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,18,0.333333333333333,497,2 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,18,0.555555555555556,463,1 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,16,17,0.555555555555556,433,1 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,12,8,0.333333333333333,281,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,62,60,0.555555555555556,2285,5 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,88,60,0.555555555555556,2491,6 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,57,93,0.5,2254,0 +"Pembrokeshire","528","Non-school expenditure",2,4437.7,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,94,93,0.5,2556,6 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2865,1262,0.444444444444444,49561,412 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,173,186,0.222222222222222,15376,24 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2333,1405,0.5,46235,218 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,233,1057,0.75,26633,233 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,289,0,0.25,6319,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,522,1008,0.666666666666667,27767,191 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,75,987,0.833333333333333,21907,75 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,17,895,0.857142857142857,13053,16 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,447,0,0,7856,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,14,0,0.166666666666667,1974,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1032,785,0.5,236517,172 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,20,0.5,3079,3 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,24,4,0.333333333333333,1070,2 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,13,4,0.333333333333333,980,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,18,4,0.222222222222222,971,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,132,164,0.666666666666667,5638,45 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,158,172,0.666666666666667,6958,89 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,199,348,0.428571428571429,22411,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,20,7,0.428571428571429,959,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,23,0.428571428571429,974,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,536,1035,0.8,20640,179 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4037,166,0.2,212479,166 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,258,14,0.2,8467,14 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,228,889,0.8,11177,11 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,304,909,0.8,13857,52 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,18,0.333333333333333,497,2 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,18,0.555555555555556,463,1 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,16,17,0.555555555555556,433,1 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,12,8,0.333333333333333,281,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,62,60,0.555555555555556,2285,5 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,88,60,0.555555555555556,2491,6 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,57,93,0.5,2254,0 +"Pembrokeshire","528","Personal social services - children and families",6,15170.040525,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,94,93,0.5,2556,6 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2865,1262,0.444444444444444,49561,412 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,173,186,0.222222222222222,15376,24 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2333,1405,0.5,46235,218 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,233,1057,0.75,26633,233 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,289,0,0.25,6319,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,522,1008,0.666666666666667,27767,191 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,75,987,0.833333333333333,21907,75 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,17,895,0.857142857142857,13053,16 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,447,0,0,7856,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,14,0,0.166666666666667,1974,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1032,785,0.5,236517,172 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,20,0.5,3079,3 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,24,4,0.333333333333333,1070,2 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,13,4,0.333333333333333,980,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,18,4,0.222222222222222,971,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,132,164,0.666666666666667,5638,45 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,158,172,0.666666666666667,6958,89 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,199,348,0.428571428571429,22411,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,20,7,0.428571428571429,959,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,23,0.428571428571429,974,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,536,1035,0.8,20640,179 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4037,166,0.2,212479,166 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,258,14,0.2,8467,14 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,228,889,0.8,11177,11 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,304,909,0.8,13857,52 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,18,0.333333333333333,497,2 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,18,0.555555555555556,463,1 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,16,17,0.555555555555556,433,1 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,12,8,0.333333333333333,281,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,62,60,0.555555555555556,2285,5 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,88,60,0.555555555555556,2491,6 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,57,93,0.5,2254,0 +"Pembrokeshire","528","Schools expenditure (including delegated and non-delegated funding)",1,95052,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,94,93,0.5,2556,6 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2865,1262,0.444444444444444,49561,412 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,173,186,0.222222222222222,15376,24 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2333,1405,0.5,46235,218 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,233,1057,0.75,26633,233 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,289,0,0.25,6319,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,522,1008,0.666666666666667,27767,191 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",6,75,987,0.833333333333333,21907,75 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",7,17,895,0.857142857142857,13053,16 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",6,447,0,0,7856,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,14,0,0.166666666666667,1974,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1032,785,0.5,236517,172 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,17,20,0.5,3079,3 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,24,4,0.333333333333333,1070,2 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,13,4,0.333333333333333,980,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,18,4,0.222222222222222,971,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,132,164,0.666666666666667,5638,45 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,158,172,0.666666666666667,6958,89 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,199,348,0.428571428571429,22411,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,20,7,0.428571428571429,959,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,6,23,0.428571428571429,974,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,536,1035,0.8,20640,179 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,4037,166,0.2,212479,166 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,258,14,0.2,8467,14 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,228,889,0.8,11177,11 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,304,909,0.8,13857,52 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,18,18,0.333333333333333,497,2 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,17,18,0.555555555555556,463,1 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,16,17,0.555555555555556,433,1 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,12,8,0.333333333333333,281,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,62,60,0.555555555555556,2285,5 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,88,60,0.555555555555556,2491,6 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,57,93,0.5,2254,0 +"Pembrokeshire","528","Total service expenditure",60,232873.617625,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,94,93,0.5,2556,6 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1281,1248,0.555555555555556,49561,412 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,253,291,0.555555555555556,15376,24 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1128,1476,0.625,46235,218 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1076,1488,0.625,26633,233 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,44,0,0,6319,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1120,982,0.444444444444444,27767,191 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,744,0.375,21907,75 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,415,600,0.555555555555556,13053,16 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,289,0,0,7856,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,0,0,1974,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,8529,2703,0.25,236517,172 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,124,63,0.375,3079,3 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,45,127,0.555555555555556,5638,45 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,182,150,0.444444444444444,6958,89 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,35,30,0.375,1070,2 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,35,30,0.375,980,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,10,27,0.75,971,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,340,0,0.142857142857143,22411,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,21,0,0.142857142857143,959,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,22,0,0,974,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1034,716,0.2,20640,179 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,2915,2196,0.2,212479,166 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,246,137,0.4,8467,14 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,478,326,0.2,11177,11 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,701,389,0.4,13857,52 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,12,0.333333333333333,497,2 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,12,0.333333333333333,463,1 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,9,12,0.444444444444444,433,1 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,10,0.555555555555556,281,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,37,73,0.555555555555556,2285,5 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,75,74,0.444444444444444,2491,6 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,80,0.5,2254,0 +"Powys","524","Net current expenditure",72,274656.51211035,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,88,83,0.333333333333333,2556,6 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1281,1248,0.555555555555556,49561,412 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,253,291,0.555555555555556,15376,24 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1128,1476,0.625,46235,218 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1076,1488,0.625,26633,233 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,44,0,0,6319,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1120,982,0.444444444444444,27767,191 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,744,0.375,21907,75 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,415,600,0.555555555555556,13053,16 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,289,0,0,7856,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,0,0,1974,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,8529,2703,0.25,236517,172 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,124,63,0.375,3079,3 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,45,127,0.555555555555556,5638,45 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,182,150,0.444444444444444,6958,89 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,35,30,0.375,1070,2 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,35,30,0.375,980,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,10,27,0.75,971,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,340,0,0.142857142857143,22411,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,21,0,0.142857142857143,959,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,22,0,0,974,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1034,716,0.2,20640,179 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,2915,2196,0.2,212479,166 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,246,137,0.4,8467,14 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,478,326,0.2,11177,11 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,701,389,0.4,13857,52 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,12,0.333333333333333,497,2 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,12,0.333333333333333,463,1 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,9,12,0.444444444444444,433,1 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,10,0.555555555555556,281,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,37,73,0.555555555555556,2285,5 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,75,74,0.444444444444444,2491,6 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,80,0.5,2254,0 +"Powys","524","Non-school expenditure",2,5029.7579945,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,88,83,0.333333333333333,2556,6 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1281,1248,0.555555555555556,49561,412 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,253,291,0.555555555555556,15376,24 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1128,1476,0.625,46235,218 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1076,1488,0.625,26633,233 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,44,0,0,6319,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1120,982,0.444444444444444,27767,191 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,744,0.375,21907,75 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,415,600,0.555555555555556,13053,16 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,289,0,0,7856,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,0,0,1974,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,8529,2703,0.25,236517,172 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,124,63,0.375,3079,3 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,45,127,0.555555555555556,5638,45 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,182,150,0.444444444444444,6958,89 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,35,30,0.375,1070,2 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,35,30,0.375,980,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,10,27,0.75,971,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,340,0,0.142857142857143,22411,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,21,0,0.142857142857143,959,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,22,0,0,974,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1034,716,0.2,20640,179 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,2915,2196,0.2,212479,166 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,246,137,0.4,8467,14 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,478,326,0.2,11177,11 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,701,389,0.4,13857,52 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,12,0.333333333333333,497,2 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,12,0.333333333333333,463,1 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,9,12,0.444444444444444,433,1 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,10,0.555555555555556,281,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,37,73,0.555555555555556,2285,5 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,75,74,0.444444444444444,2491,6 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,80,0.5,2254,0 +"Powys","524","Personal social services - children and families",6,19876.19831655,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,88,83,0.333333333333333,2556,6 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1281,1248,0.555555555555556,49561,412 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,253,291,0.555555555555556,15376,24 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1128,1476,0.625,46235,218 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1076,1488,0.625,26633,233 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,44,0,0,6319,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1120,982,0.444444444444444,27767,191 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,744,0.375,21907,75 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,415,600,0.555555555555556,13053,16 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,289,0,0,7856,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,0,0,1974,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,8529,2703,0.25,236517,172 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,124,63,0.375,3079,3 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,45,127,0.555555555555556,5638,45 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,182,150,0.444444444444444,6958,89 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,35,30,0.375,1070,2 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,35,30,0.375,980,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,10,27,0.75,971,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,340,0,0.142857142857143,22411,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,21,0,0.142857142857143,959,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,22,0,0,974,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1034,716,0.2,20640,179 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,2915,2196,0.2,212479,166 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,246,137,0.4,8467,14 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,478,326,0.2,11177,11 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,701,389,0.4,13857,52 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,12,0.333333333333333,497,2 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,12,0.333333333333333,463,1 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,9,12,0.444444444444444,433,1 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,10,0.555555555555556,281,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,37,73,0.555555555555556,2285,5 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,75,74,0.444444444444444,2491,6 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,80,0.5,2254,0 +"Powys","524","Schools expenditure (including delegated and non-delegated funding)",1,104537.9357262,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,88,83,0.333333333333333,2556,6 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1281,1248,0.555555555555556,49561,412 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,253,291,0.555555555555556,15376,24 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,1128,1476,0.625,46235,218 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1076,1488,0.625,26633,233 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,44,0,0,6319,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1120,982,0.444444444444444,27767,191 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,831,744,0.375,21907,75 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,415,600,0.555555555555556,13053,16 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,289,0,0,7856,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,0,0,1974,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,8529,2703,0.25,236517,172 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,124,63,0.375,3079,3 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,45,127,0.555555555555556,5638,45 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,182,150,0.444444444444444,6958,89 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,35,30,0.375,1070,2 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,35,30,0.375,980,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,10,27,0.75,971,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,340,0,0.142857142857143,22411,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,21,0,0.142857142857143,959,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,22,0,0,974,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1034,716,0.2,20640,179 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,2915,2196,0.2,212479,166 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,246,137,0.4,8467,14 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,478,326,0.2,11177,11 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,701,389,0.4,13857,52 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,11,12,0.333333333333333,497,2 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,11,12,0.333333333333333,463,1 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,9,12,0.444444444444444,433,1 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,10,0.555555555555556,281,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,37,73,0.555555555555556,2285,5 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,75,74,0.444444444444444,2491,6 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,31,80,0.5,2254,0 +"Powys","524","Total service expenditure",60,265681.10805785,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,88,83,0.333333333333333,2556,6 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3330,3765,0.444444444444444,49561,412 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1249,908,0.555555555555556,15376,24 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2807,3102,0.375,46235,218 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,457,2384,0.75,26633,233 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,708,592,0.375,6319,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1361,3107,0.666666666666667,27767,191 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,85,1966,0.875,21907,75 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,33,1456,0.888888888888889,13053,16 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1276,503,0.375,7856,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,49,205,0.5,1974,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1868,10839,0.75,236517,172 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,13,136,0.75,3079,3 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,455,653,0.666666666666667,5638,45 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,558,750,0.666666666666667,6958,89 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,46,83,0.375,1070,2 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,29,82,0.5,980,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,14,82,0.5,971,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1200,126,0.142857142857143,22411,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,330,15,0.428571428571429,959,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,0,0,974,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1191,1580,0.6,20640,179 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10995,27631,0.8,212479,166 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,653,1051,0.6,8467,14 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,469,818,0.6,11177,11 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,595,954,0.8,13857,52 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,28,48,0.777777777777778,497,2 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,20,43,0.666666666666667,463,1 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,18,40,0.666666666666667,433,1 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,27,0.666666666666667,281,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,109,268,1,2285,5 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,155,274,0.777777777777778,2491,6 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,145,242,0.875,2254,0 +"Rhondda Cynon Taf","540","Net current expenditure",72,519625.2437066,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,155,255,0.833333333333333,2556,6 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3330,3765,0.444444444444444,49561,412 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1249,908,0.555555555555556,15376,24 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2807,3102,0.375,46235,218 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,457,2384,0.75,26633,233 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,708,592,0.375,6319,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1361,3107,0.666666666666667,27767,191 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,85,1966,0.875,21907,75 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,33,1456,0.888888888888889,13053,16 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1276,503,0.375,7856,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,49,205,0.5,1974,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1868,10839,0.75,236517,172 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,13,136,0.75,3079,3 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,455,653,0.666666666666667,5638,45 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,558,750,0.666666666666667,6958,89 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,46,83,0.375,1070,2 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,29,82,0.5,980,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,14,82,0.5,971,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1200,126,0.142857142857143,22411,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,330,15,0.428571428571429,959,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,0,0,974,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1191,1580,0.6,20640,179 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10995,27631,0.8,212479,166 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,653,1051,0.6,8467,14 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,469,818,0.6,11177,11 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,595,954,0.8,13857,52 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,28,48,0.777777777777778,497,2 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,20,43,0.666666666666667,463,1 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,18,40,0.666666666666667,433,1 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,27,0.666666666666667,281,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,109,268,1,2285,5 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,155,274,0.777777777777778,2491,6 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,145,242,0.875,2254,0 +"Rhondda Cynon Taf","540","Non-school expenditure",2,10822.0743011,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,155,255,0.833333333333333,2556,6 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3330,3765,0.444444444444444,49561,412 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1249,908,0.555555555555556,15376,24 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2807,3102,0.375,46235,218 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,457,2384,0.75,26633,233 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,708,592,0.375,6319,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1361,3107,0.666666666666667,27767,191 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,85,1966,0.875,21907,75 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,33,1456,0.888888888888889,13053,16 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1276,503,0.375,7856,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,49,205,0.5,1974,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1868,10839,0.75,236517,172 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,13,136,0.75,3079,3 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,455,653,0.666666666666667,5638,45 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,558,750,0.666666666666667,6958,89 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,46,83,0.375,1070,2 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,29,82,0.5,980,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,14,82,0.5,971,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1200,126,0.142857142857143,22411,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,330,15,0.428571428571429,959,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,0,0,974,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1191,1580,0.6,20640,179 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10995,27631,0.8,212479,166 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,653,1051,0.6,8467,14 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,469,818,0.6,11177,11 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,595,954,0.8,13857,52 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,28,48,0.777777777777778,497,2 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,20,43,0.666666666666667,463,1 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,18,40,0.666666666666667,433,1 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,27,0.666666666666667,281,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,109,268,1,2285,5 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,155,274,0.777777777777778,2491,6 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,145,242,0.875,2254,0 +"Rhondda Cynon Taf","540","Personal social services - children and families",6,46574.8947715,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,155,255,0.833333333333333,2556,6 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3330,3765,0.444444444444444,49561,412 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1249,908,0.555555555555556,15376,24 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2807,3102,0.375,46235,218 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,457,2384,0.75,26633,233 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,708,592,0.375,6319,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1361,3107,0.666666666666667,27767,191 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,85,1966,0.875,21907,75 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,33,1456,0.888888888888889,13053,16 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1276,503,0.375,7856,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,49,205,0.5,1974,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1868,10839,0.75,236517,172 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,13,136,0.75,3079,3 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,455,653,0.666666666666667,5638,45 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,558,750,0.666666666666667,6958,89 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,46,83,0.375,1070,2 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,29,82,0.5,980,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,14,82,0.5,971,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1200,126,0.142857142857143,22411,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,330,15,0.428571428571429,959,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,0,0,974,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1191,1580,0.6,20640,179 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10995,27631,0.8,212479,166 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,653,1051,0.6,8467,14 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,469,818,0.6,11177,11 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,595,954,0.8,13857,52 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,28,48,0.777777777777778,497,2 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,20,43,0.666666666666667,463,1 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,18,40,0.666666666666667,433,1 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,27,0.666666666666667,281,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,109,268,1,2285,5 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,155,274,0.777777777777778,2491,6 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,145,242,0.875,2254,0 +"Rhondda Cynon Taf","540","Schools expenditure (including delegated and non-delegated funding)",1,200029.8418665,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,155,255,0.833333333333333,2556,6 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,3330,3765,0.444444444444444,49561,412 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,1249,908,0.555555555555556,15376,24 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2807,3102,0.375,46235,218 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,457,2384,0.75,26633,233 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,708,592,0.375,6319,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1361,3107,0.666666666666667,27767,191 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,85,1966,0.875,21907,75 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,33,1456,0.888888888888889,13053,16 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,1276,503,0.375,7856,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",8,49,205,0.5,1974,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,1868,10839,0.75,236517,172 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,13,136,0.75,3079,3 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,455,653,0.666666666666667,5638,45 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,558,750,0.666666666666667,6958,89 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,46,83,0.375,1070,2 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,29,82,0.5,980,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,14,82,0.5,971,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1200,126,0.142857142857143,22411,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,330,15,0.428571428571429,959,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,0,0,974,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1191,1580,0.6,20640,179 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,10995,27631,0.8,212479,166 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,653,1051,0.6,8467,14 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,469,818,0.6,11177,11 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,595,954,0.8,13857,52 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,28,48,0.777777777777778,497,2 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,20,43,0.666666666666667,463,1 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,18,40,0.666666666666667,433,1 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,9,27,0.666666666666667,281,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,109,268,1,2285,5 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,155,274,0.777777777777778,2491,6 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,145,242,0.875,2254,0 +"Rhondda Cynon Taf","540","Total service expenditure",60,506895.7172766,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,155,255,0.833333333333333,2556,6 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2467,1499,0.555555555555556,49561,412 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,729,213,0.444444444444444,15376,24 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2467,1803,0.625,46235,218 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1523,1424,0.5,26633,233 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,78,83,0.5,6319,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1601,1328,0.444444444444444,27767,191 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,1285,1207,0.5,21907,75 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,169,664,0.777777777777778,13053,16 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,316,66,0.428571428571429,7856,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,55,10,0.571428571428571,1974,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,10610,25867,0.625,236517,172 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,173,440,0.625,3079,3 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,382,618,0.555555555555556,5638,45 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,434,652,0.555555555555556,6958,89 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,19,29,0.75,1070,2 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,29,0.625,980,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,19,28,0.5,971,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,596,297,0.571428571428571,22411,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,115,0,0.428571428571429,959,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,58,0,0.285714285714286,974,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,85,0,0,96,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1422,1344,0.6,20640,179 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7711,1959,0.4,212479,166 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,546,163,0.4,8467,14 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,461,1033,1,11177,11 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,812,1473,0.8,13857,52 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,24,42,0.777777777777778,497,2 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,22,35,0.555555555555556,463,1 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,19,33,0.666666666666667,433,1 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,10,15,0.555555555555556,281,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,113,210,0.333333333333333,2285,5 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,144,219,0.444444444444444,2491,6 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,137,221,0.5,2254,0 +"Swansea","532","Net current expenditure",72,491028.70203145,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,72,225,0.666666666666667,2556,6 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2467,1499,0.555555555555556,49561,412 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,729,213,0.444444444444444,15376,24 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2467,1803,0.625,46235,218 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1523,1424,0.5,26633,233 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,78,83,0.5,6319,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1601,1328,0.444444444444444,27767,191 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,1285,1207,0.5,21907,75 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,169,664,0.777777777777778,13053,16 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,316,66,0.428571428571429,7856,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,55,10,0.571428571428571,1974,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,10610,25867,0.625,236517,172 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,173,440,0.625,3079,3 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,382,618,0.555555555555556,5638,45 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,434,652,0.555555555555556,6958,89 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,19,29,0.75,1070,2 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,29,0.625,980,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,19,28,0.5,971,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,596,297,0.571428571428571,22411,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,115,0,0.428571428571429,959,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,58,0,0.285714285714286,974,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,85,0,0,96,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1422,1344,0.6,20640,179 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7711,1959,0.4,212479,166 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,546,163,0.4,8467,14 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,461,1033,1,11177,11 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,812,1473,0.8,13857,52 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,24,42,0.777777777777778,497,2 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,22,35,0.555555555555556,463,1 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,19,33,0.666666666666667,433,1 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,10,15,0.555555555555556,281,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,113,210,0.333333333333333,2285,5 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,144,219,0.444444444444444,2491,6 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,137,221,0.5,2254,0 +"Swansea","532","Non-school expenditure",2,7953.555411,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,72,225,0.666666666666667,2556,6 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2467,1499,0.555555555555556,49561,412 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,729,213,0.444444444444444,15376,24 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2467,1803,0.625,46235,218 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1523,1424,0.5,26633,233 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,78,83,0.5,6319,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1601,1328,0.444444444444444,27767,191 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,1285,1207,0.5,21907,75 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,169,664,0.777777777777778,13053,16 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,316,66,0.428571428571429,7856,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,55,10,0.571428571428571,1974,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,10610,25867,0.625,236517,172 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,173,440,0.625,3079,3 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,382,618,0.555555555555556,5638,45 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,434,652,0.555555555555556,6958,89 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,19,29,0.75,1070,2 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,29,0.625,980,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,19,28,0.5,971,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,596,297,0.571428571428571,22411,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,115,0,0.428571428571429,959,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,58,0,0.285714285714286,974,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,85,0,0,96,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1422,1344,0.6,20640,179 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7711,1959,0.4,212479,166 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,546,163,0.4,8467,14 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,461,1033,1,11177,11 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,812,1473,0.8,13857,52 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,24,42,0.777777777777778,497,2 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,22,35,0.555555555555556,463,1 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,19,33,0.666666666666667,433,1 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,10,15,0.555555555555556,281,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,113,210,0.333333333333333,2285,5 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,144,219,0.444444444444444,2491,6 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,137,221,0.5,2254,0 +"Swansea","532","Personal social services - children and families",6,41419.4401977,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,72,225,0.666666666666667,2556,6 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2467,1499,0.555555555555556,49561,412 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,729,213,0.444444444444444,15376,24 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2467,1803,0.625,46235,218 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1523,1424,0.5,26633,233 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,78,83,0.5,6319,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1601,1328,0.444444444444444,27767,191 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,1285,1207,0.5,21907,75 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,169,664,0.777777777777778,13053,16 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,316,66,0.428571428571429,7856,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,55,10,0.571428571428571,1974,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,10610,25867,0.625,236517,172 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,173,440,0.625,3079,3 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,382,618,0.555555555555556,5638,45 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,434,652,0.555555555555556,6958,89 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,19,29,0.75,1070,2 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,29,0.625,980,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,19,28,0.5,971,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,596,297,0.571428571428571,22411,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,115,0,0.428571428571429,959,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,58,0,0.285714285714286,974,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,85,0,0,96,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1422,1344,0.6,20640,179 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7711,1959,0.4,212479,166 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,546,163,0.4,8467,14 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,461,1033,1,11177,11 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,812,1473,0.8,13857,52 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,24,42,0.777777777777778,497,2 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,22,35,0.555555555555556,463,1 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,19,33,0.666666666666667,433,1 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,10,15,0.555555555555556,281,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,113,210,0.333333333333333,2285,5 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,144,219,0.444444444444444,2491,6 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,137,221,0.5,2254,0 +"Swansea","532","Schools expenditure (including delegated and non-delegated funding)",1,174865.14107145,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,72,225,0.666666666666667,2556,6 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2467,1499,0.555555555555556,49561,412 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,729,213,0.444444444444444,15376,24 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2467,1803,0.625,46235,218 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,1523,1424,0.5,26633,233 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,78,83,0.5,6319,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,1601,1328,0.444444444444444,27767,191 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,1285,1207,0.5,21907,75 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,169,664,0.777777777777778,13053,16 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,316,66,0.428571428571429,7856,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,55,10,0.571428571428571,1974,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,10610,25867,0.625,236517,172 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,173,440,0.625,3079,3 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,382,618,0.555555555555556,5638,45 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,434,652,0.555555555555556,6958,89 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,19,29,0.75,1070,2 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,19,29,0.625,980,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,19,28,0.5,971,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,596,297,0.571428571428571,22411,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,115,0,0.428571428571429,959,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,58,0,0.285714285714286,974,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,85,0,0,96,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,1422,1344,0.6,20640,179 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,7711,1959,0.4,212479,166 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,546,163,0.4,8467,14 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,461,1033,1,11177,11 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,812,1473,0.8,13857,52 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,24,42,0.777777777777778,497,2 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,22,35,0.555555555555556,463,1 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,19,33,0.666666666666667,433,1 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,10,15,0.555555555555556,281,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,113,210,0.333333333333333,2285,5 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,144,219,0.444444444444444,2491,6 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,137,221,0.5,2254,0 +"Swansea","532","Total service expenditure",60,478840.58770095,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,72,225,0.666666666666667,2556,6 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2873,1447,0.333333333333333,49561,412 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,467,323,0.333333333333333,15376,24 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2315,1968,0.375,46235,218 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,618,1296,0.75,26633,233 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,98,236,0.75,6319,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,716,1154,0.555555555555556,27767,191 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,256,1229,0.625,21907,75 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,29,536,0.666666666666667,13053,16 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,460,220,0.5,7856,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,129,0.714285714285714,1974,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,7560,2368,0.5,236517,172 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,103,52,0.375,3079,3 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,144,257,0.444444444444444,5638,45 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,153,270,0.444444444444444,6958,89 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,17,49,0.625,1070,2 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,17,30,0.625,980,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,17,28,0.625,971,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1301,453,0.428571428571429,22411,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,14,0.714285714285714,959,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,31,0.571428571428571,974,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,703,988,0.8,20640,179 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5994,8173,0.4,212479,166 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,308,488,0.8,8467,14 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,53,184,0.6,11177,11 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,117,236,0.4,13857,52 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,14,13,0.444444444444444,497,2 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,14,13,0.444444444444444,463,1 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,14,12,0.333333333333333,433,1 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,8,4,0.333333333333333,281,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,18,106,0.555555555555556,2285,5 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,18,106,0.666666666666667,2491,6 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,17,104,0.625,2254,0 +"Torfaen","546","Net current expenditure",72,200665.9592126,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,24,104,0.666666666666667,2556,6 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2873,1447,0.333333333333333,49561,412 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,467,323,0.333333333333333,15376,24 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2315,1968,0.375,46235,218 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,618,1296,0.75,26633,233 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,98,236,0.75,6319,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,716,1154,0.555555555555556,27767,191 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,256,1229,0.625,21907,75 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,29,536,0.666666666666667,13053,16 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,460,220,0.5,7856,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,129,0.714285714285714,1974,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,7560,2368,0.5,236517,172 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,103,52,0.375,3079,3 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,144,257,0.444444444444444,5638,45 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,153,270,0.444444444444444,6958,89 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,17,49,0.625,1070,2 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,17,30,0.625,980,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,17,28,0.625,971,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1301,453,0.428571428571429,22411,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,14,0.714285714285714,959,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,31,0.571428571428571,974,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,703,988,0.8,20640,179 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5994,8173,0.4,212479,166 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,308,488,0.8,8467,14 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,53,184,0.6,11177,11 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,117,236,0.4,13857,52 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,14,13,0.444444444444444,497,2 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,14,13,0.444444444444444,463,1 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,14,12,0.333333333333333,433,1 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,8,4,0.333333333333333,281,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,18,106,0.555555555555556,2285,5 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,18,106,0.666666666666667,2491,6 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,17,104,0.625,2254,0 +"Torfaen","546","Non-school expenditure",2,5506.6569,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,24,104,0.666666666666667,2556,6 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2873,1447,0.333333333333333,49561,412 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,467,323,0.333333333333333,15376,24 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2315,1968,0.375,46235,218 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,618,1296,0.75,26633,233 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,98,236,0.75,6319,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,716,1154,0.555555555555556,27767,191 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,256,1229,0.625,21907,75 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,29,536,0.666666666666667,13053,16 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,460,220,0.5,7856,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,129,0.714285714285714,1974,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,7560,2368,0.5,236517,172 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,103,52,0.375,3079,3 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,144,257,0.444444444444444,5638,45 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,153,270,0.444444444444444,6958,89 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,17,49,0.625,1070,2 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,17,30,0.625,980,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,17,28,0.625,971,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1301,453,0.428571428571429,22411,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,14,0.714285714285714,959,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,31,0.571428571428571,974,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,703,988,0.8,20640,179 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5994,8173,0.4,212479,166 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,308,488,0.8,8467,14 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,53,184,0.6,11177,11 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,117,236,0.4,13857,52 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,14,13,0.444444444444444,497,2 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,14,13,0.444444444444444,463,1 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,14,12,0.333333333333333,433,1 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,8,4,0.333333333333333,281,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,18,106,0.555555555555556,2285,5 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,18,106,0.666666666666667,2491,6 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,17,104,0.625,2254,0 +"Torfaen","546","Personal social services - children and families",6,17199.89448025,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,24,104,0.666666666666667,2556,6 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2873,1447,0.333333333333333,49561,412 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,467,323,0.333333333333333,15376,24 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2315,1968,0.375,46235,218 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,618,1296,0.75,26633,233 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,98,236,0.75,6319,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,716,1154,0.555555555555556,27767,191 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,256,1229,0.625,21907,75 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,29,536,0.666666666666667,13053,16 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,460,220,0.5,7856,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,129,0.714285714285714,1974,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,7560,2368,0.5,236517,172 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,103,52,0.375,3079,3 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,144,257,0.444444444444444,5638,45 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,153,270,0.444444444444444,6958,89 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,17,49,0.625,1070,2 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,17,30,0.625,980,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,17,28,0.625,971,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1301,453,0.428571428571429,22411,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,14,0.714285714285714,959,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,31,0.571428571428571,974,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,703,988,0.8,20640,179 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5994,8173,0.4,212479,166 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,308,488,0.8,8467,14 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,53,184,0.6,11177,11 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,117,236,0.4,13857,52 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,14,13,0.444444444444444,497,2 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,14,13,0.444444444444444,463,1 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,14,12,0.333333333333333,433,1 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,8,4,0.333333333333333,281,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,18,106,0.555555555555556,2285,5 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,18,106,0.666666666666667,2491,6 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,17,104,0.625,2254,0 +"Torfaen","546","Schools expenditure (including delegated and non-delegated funding)",1,76314.3462,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,24,104,0.666666666666667,2556,6 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,2873,1447,0.333333333333333,49561,412 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,467,323,0.333333333333333,15376,24 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,2315,1968,0.375,46235,218 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,618,1296,0.75,26633,233 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,98,236,0.75,6319,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,716,1154,0.555555555555556,27767,191 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,256,1229,0.625,21907,75 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,29,536,0.666666666666667,13053,16 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",8,460,220,0.5,7856,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",7,0,129,0.714285714285714,1974,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,7560,2368,0.5,236517,172 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,103,52,0.375,3079,3 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,144,257,0.444444444444444,5638,45 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,153,270,0.444444444444444,6958,89 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",8,17,49,0.625,1070,2 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",8,17,30,0.625,980,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",8,17,28,0.625,971,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1301,453,0.428571428571429,22411,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,1,14,0.714285714285714,959,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,0,31,0.571428571428571,974,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,703,988,0.8,20640,179 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,5994,8173,0.4,212479,166 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,308,488,0.8,8467,14 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,53,184,0.6,11177,11 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,117,236,0.4,13857,52 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,14,13,0.444444444444444,497,2 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,14,13,0.444444444444444,463,1 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,14,12,0.333333333333333,433,1 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,8,4,0.333333333333333,281,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,18,106,0.555555555555556,2285,5 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,18,106,0.666666666666667,2491,6 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,17,104,0.625,2254,0 +"Torfaen","546","Total service expenditure",60,195036.2843486,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,24,104,0.666666666666667,2556,6 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1788,1055,0.555555555555556,49561,412 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,579,194,0.555555555555556,15376,24 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,809,973,0.5,46235,218 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,267,556,0.5,26633,233 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,241,121,0.5,6319,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,660,683,0.555555555555556,27767,191 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,79,452,0.5,21907,75 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,28,135,0.666666666666667,13053,16 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,581,98,0.428571428571429,7856,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2844,2151,0.5,236517,172 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,39,42,0.25,3079,3 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,70,4,0.444444444444444,1070,2 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,4,0.555555555555556,980,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,17,4,0.444444444444444,971,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,156,196,0.555555555555556,5638,45 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,183,286,0.555555555555556,6958,89 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,63,63,0.333333333333333,1974,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1144,302,0.428571428571429,22411,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,0,0,959,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,252,0,0.142857142857143,974,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,547,589,0.4,20640,179 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1973,1006,0.2,212479,166 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,145,72,0.2,8467,14 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,180,686,0.8,11177,11 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,229,728,0.8,13857,52 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,10,21,0.444444444444444,497,2 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,10,21,0.444444444444444,463,1 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,21,0.333333333333333,433,1 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,13,0.444444444444444,281,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,67,121,0.666666666666667,2285,5 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,67,121,0.777777777777778,2491,6 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,67,141,0.75,2254,0 +"Vale of Glamorgan","538","Net current expenditure",72,245973.8537755,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,87,141,0.833333333333333,2556,6 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1788,1055,0.555555555555556,49561,412 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,579,194,0.555555555555556,15376,24 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,809,973,0.5,46235,218 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,267,556,0.5,26633,233 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,241,121,0.5,6319,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,660,683,0.555555555555556,27767,191 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,79,452,0.5,21907,75 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,28,135,0.666666666666667,13053,16 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,581,98,0.428571428571429,7856,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2844,2151,0.5,236517,172 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,39,42,0.25,3079,3 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,70,4,0.444444444444444,1070,2 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,4,0.555555555555556,980,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,17,4,0.444444444444444,971,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,156,196,0.555555555555556,5638,45 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,183,286,0.555555555555556,6958,89 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,63,63,0.333333333333333,1974,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1144,302,0.428571428571429,22411,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,0,0,959,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,252,0,0.142857142857143,974,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,547,589,0.4,20640,179 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1973,1006,0.2,212479,166 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,145,72,0.2,8467,14 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,180,686,0.8,11177,11 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,229,728,0.8,13857,52 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,10,21,0.444444444444444,497,2 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,10,21,0.444444444444444,463,1 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,21,0.333333333333333,433,1 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,13,0.444444444444444,281,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,67,121,0.666666666666667,2285,5 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,67,121,0.777777777777778,2491,6 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,67,141,0.75,2254,0 +"Vale of Glamorgan","538","Non-school expenditure",2,4040.2475,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,87,141,0.833333333333333,2556,6 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1788,1055,0.555555555555556,49561,412 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,579,194,0.555555555555556,15376,24 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,809,973,0.5,46235,218 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,267,556,0.5,26633,233 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,241,121,0.5,6319,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,660,683,0.555555555555556,27767,191 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,79,452,0.5,21907,75 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,28,135,0.666666666666667,13053,16 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,581,98,0.428571428571429,7856,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2844,2151,0.5,236517,172 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,39,42,0.25,3079,3 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,70,4,0.444444444444444,1070,2 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,4,0.555555555555556,980,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,17,4,0.444444444444444,971,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,156,196,0.555555555555556,5638,45 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,183,286,0.555555555555556,6958,89 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,63,63,0.333333333333333,1974,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1144,302,0.428571428571429,22411,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,0,0,959,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,252,0,0.142857142857143,974,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,547,589,0.4,20640,179 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1973,1006,0.2,212479,166 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,145,72,0.2,8467,14 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,180,686,0.8,11177,11 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,229,728,0.8,13857,52 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,10,21,0.444444444444444,497,2 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,10,21,0.444444444444444,463,1 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,21,0.333333333333333,433,1 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,13,0.444444444444444,281,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,67,121,0.666666666666667,2285,5 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,67,121,0.777777777777778,2491,6 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,67,141,0.75,2254,0 +"Vale of Glamorgan","538","Personal social services - children and families",6,17677.522291,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,87,141,0.833333333333333,2556,6 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1788,1055,0.555555555555556,49561,412 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,579,194,0.555555555555556,15376,24 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,809,973,0.5,46235,218 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,267,556,0.5,26633,233 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,241,121,0.5,6319,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,660,683,0.555555555555556,27767,191 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,79,452,0.5,21907,75 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,28,135,0.666666666666667,13053,16 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,581,98,0.428571428571429,7856,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2844,2151,0.5,236517,172 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,39,42,0.25,3079,3 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,70,4,0.444444444444444,1070,2 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,4,0.555555555555556,980,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,17,4,0.444444444444444,971,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,156,196,0.555555555555556,5638,45 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,183,286,0.555555555555556,6958,89 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,63,63,0.333333333333333,1974,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1144,302,0.428571428571429,22411,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,0,0,959,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,252,0,0.142857142857143,974,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,547,589,0.4,20640,179 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1973,1006,0.2,212479,166 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,145,72,0.2,8467,14 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,180,686,0.8,11177,11 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,229,728,0.8,13857,52 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,10,21,0.444444444444444,497,2 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,10,21,0.444444444444444,463,1 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,21,0.333333333333333,433,1 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,13,0.444444444444444,281,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,67,121,0.666666666666667,2285,5 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,67,121,0.777777777777778,2491,6 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,67,141,0.75,2254,0 +"Vale of Glamorgan","538","Schools expenditure (including delegated and non-delegated funding)",1,102220.0587355,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,87,141,0.833333333333333,2556,6 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1788,1055,0.555555555555556,49561,412 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,579,194,0.555555555555556,15376,24 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,809,973,0.5,46235,218 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,267,556,0.5,26633,233 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,241,121,0.5,6319,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,660,683,0.555555555555556,27767,191 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,79,452,0.5,21907,75 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,28,135,0.666666666666667,13053,16 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",7,581,98,0.428571428571429,7856,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,2844,2151,0.5,236517,172 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,39,42,0.25,3079,3 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,70,4,0.444444444444444,1070,2 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,30,4,0.555555555555556,980,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,17,4,0.444444444444444,971,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",9,156,196,0.555555555555556,5638,45 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",9,183,286,0.555555555555556,6958,89 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",6,63,63,0.333333333333333,1974,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,1144,302,0.428571428571429,22411,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",29,"Required core assessments that have not yet been completed during the year","care0020",7,0,0,0,959,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",31,"Required initial assessments that have not yet been completed during the year","care0020",7,252,0,0.142857142857143,974,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",32,"Required initial assessments that have not yet been completed from previous periods","care0020",7,0,0,0,96,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,547,589,0.4,20640,179 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,1973,1006,0.2,212479,166 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,145,72,0.2,8467,14 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,180,686,0.8,11177,11 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,229,728,0.8,13857,52 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,10,21,0.444444444444444,497,2 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,10,21,0.444444444444444,463,1 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,8,21,0.333333333333333,433,1 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,4,13,0.444444444444444,281,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,67,121,0.666666666666667,2285,5 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,67,121,0.777777777777778,2491,6 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,67,141,0.75,2254,0 +"Vale of Glamorgan","538","Total service expenditure",60,237902.0186755,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,87,141,0.833333333333333,2556,6 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1128,1866,0.555555555555556,49561,412 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,223,378,0.555555555555556,15376,24 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,672,3506,0.75,46235,218 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,452,1964,0.625,26633,233 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,47,23,0.375,6319,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,387,1372,0.777777777777778,27767,191 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,313,1692,0.75,21907,75 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,182,641,0.555555555555556,13053,16 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,74,0,0.4,7856,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,47,0,0.4,1974,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,11700,8870,0.375,236517,172 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,97,151,0.625,3079,3 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,46,82,0.444444444444444,1070,2 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,46,81,0.444444444444444,980,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,46,81,0.444444444444444,971,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",6,158,157,0.5,5638,45 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",6,190,184,0.5,6958,89 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,354,1580,0.571428571428571,22411,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,249,1043,1,20640,179 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,25927,9944,0.2,212479,166 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,647,679,0.8,8467,14 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,125,334,0.6,11177,11 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,203,485,0.6,13857,52 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,15,0.444444444444444,497,2 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,15,14,0.444444444444444,463,1 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,12,13,0.444444444444444,433,1 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,12,0.555555555555556,281,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,44,89,0.555555555555556,2285,5 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,48,98,0.555555555555556,2491,6 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,47,102,0.75,2254,0 +"Wrexham","522","Net current expenditure",72,256045.57528445,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,63,102,0.5,2556,6 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1128,1866,0.555555555555556,49561,412 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,223,378,0.555555555555556,15376,24 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,672,3506,0.75,46235,218 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,452,1964,0.625,26633,233 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,47,23,0.375,6319,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,387,1372,0.777777777777778,27767,191 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,313,1692,0.75,21907,75 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,182,641,0.555555555555556,13053,16 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,74,0,0.4,7856,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,47,0,0.4,1974,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,11700,8870,0.375,236517,172 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,97,151,0.625,3079,3 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,46,82,0.444444444444444,1070,2 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,46,81,0.444444444444444,980,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,46,81,0.444444444444444,971,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",6,158,157,0.5,5638,45 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",6,190,184,0.5,6958,89 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,354,1580,0.571428571428571,22411,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,249,1043,1,20640,179 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,25927,9944,0.2,212479,166 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,647,679,0.8,8467,14 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,125,334,0.6,11177,11 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,203,485,0.6,13857,52 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,15,0.444444444444444,497,2 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,15,14,0.444444444444444,463,1 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,12,13,0.444444444444444,433,1 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,12,0.555555555555556,281,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,44,89,0.555555555555556,2285,5 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,48,98,0.555555555555556,2491,6 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,47,102,0.75,2254,0 +"Wrexham","522","Non-school expenditure",2,4443.55392185,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,63,102,0.5,2556,6 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1128,1866,0.555555555555556,49561,412 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,223,378,0.555555555555556,15376,24 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,672,3506,0.75,46235,218 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,452,1964,0.625,26633,233 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,47,23,0.375,6319,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,387,1372,0.777777777777778,27767,191 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,313,1692,0.75,21907,75 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,182,641,0.555555555555556,13053,16 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,74,0,0.4,7856,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,47,0,0.4,1974,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,11700,8870,0.375,236517,172 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,97,151,0.625,3079,3 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,46,82,0.444444444444444,1070,2 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,46,81,0.444444444444444,980,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,46,81,0.444444444444444,971,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",6,158,157,0.5,5638,45 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",6,190,184,0.5,6958,89 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,354,1580,0.571428571428571,22411,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,249,1043,1,20640,179 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,25927,9944,0.2,212479,166 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,647,679,0.8,8467,14 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,125,334,0.6,11177,11 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,203,485,0.6,13857,52 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,15,0.444444444444444,497,2 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,15,14,0.444444444444444,463,1 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,12,13,0.444444444444444,433,1 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,12,0.555555555555556,281,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,44,89,0.555555555555556,2285,5 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,48,98,0.555555555555556,2491,6 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,47,102,0.75,2254,0 +"Wrexham","522","Personal social services - children and families",6,20450.3217858,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,63,102,0.5,2556,6 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1128,1866,0.555555555555556,49561,412 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,223,378,0.555555555555556,15376,24 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,672,3506,0.75,46235,218 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,452,1964,0.625,26633,233 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,47,23,0.375,6319,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,387,1372,0.777777777777778,27767,191 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,313,1692,0.75,21907,75 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,182,641,0.555555555555556,13053,16 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,74,0,0.4,7856,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,47,0,0.4,1974,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,11700,8870,0.375,236517,172 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,97,151,0.625,3079,3 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,46,82,0.444444444444444,1070,2 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,46,81,0.444444444444444,980,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,46,81,0.444444444444444,971,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",6,158,157,0.5,5638,45 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",6,190,184,0.5,6958,89 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,354,1580,0.571428571428571,22411,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,249,1043,1,20640,179 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,25927,9944,0.2,212479,166 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,647,679,0.8,8467,14 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,125,334,0.6,11177,11 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,203,485,0.6,13857,52 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,15,0.444444444444444,497,2 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,15,14,0.444444444444444,463,1 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,12,13,0.444444444444444,433,1 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,12,0.555555555555556,281,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,44,89,0.555555555555556,2285,5 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,48,98,0.555555555555556,2491,6 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,47,102,0.75,2254,0 +"Wrexham","522","Schools expenditure (including delegated and non-delegated funding)",1,94474.2760255,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,63,102,0.5,2556,6 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",1,"The total number of referrals received during the year","care0020",9,1128,1866,0.555555555555556,49561,412 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",2,"Number of referrals during the year that were re-referrals","care0020",9,223,378,0.555555555555556,15376,24 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",4,"The number of referrals during the year on which a decision was made within 1 working day","care0020",8,672,3506,0.75,46235,218 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",6,"The number of referrals that were allocated to a social worker for initial assessment during the year","care0020",8,452,1964,0.625,26633,233 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",7,"The number of referrals that were allocated to someone other than a social worker for initial assessment during the year","care0020",8,47,23,0.375,6319,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",8,"The number of initial assessments that were completed during the year","care0020",9,387,1372,0.777777777777778,27767,191 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",9,"The number of initial assessments that were completed during the year where the child has been seen by the Social Worker","care0020",8,313,1692,0.75,21907,75 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",10,"The number of initial assessments that were completed during the year where the child has been seen alone by the Social Worker","care0020",9,182,641,0.555555555555556,13053,16 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",11,"The number of initial assessments that were completed during the year where the child has been seen by someone other than a Social Worker","care0020",5,74,0,0.4,7856,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",12,"The number of initial assessments that were completed during the year where the child has been seen alone by someone other than a Social Worker","care0020",5,47,0,0.4,1974,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",23,"The total number of working days taken to complete all required core assessments where the number of working days was more than 35","care0020",8,11700,8870,0.375,236517,172 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",24,"The total number of required core assessments that took longer than 35 working days to complete","care0020",8,97,151,0.625,3079,3 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",25,"The number of young carers known to Social Services during the year","care0020",9,46,82,0.444444444444444,1070,2 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",26,"The number of young carers known to Social Services who were assessed during the year","care0020",9,46,81,0.444444444444444,980,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",27,"The number of young carers known to Social Services who were provided with a service during the year","care0020",9,46,81,0.444444444444444,971,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",33,"The number of health assessments for looked after children due in the year that have been undertaken","care0020",6,158,157,0.5,5638,45 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",34,"The number of health assessments for looked after children due to be undertaken in the year","care0020",6,190,184,0.5,6958,89 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",28,"The number of referrals that did not proceed to allocation for initial assessment during the year","care0020",7,354,1580,0.571428571428571,22411,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",35,"The number of initial assessments completed within 7 working days","care0020",5,249,1043,1,20640,179 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",36,"The total number of working days taken to complete all initial assessments where the number of working days taken was 8 or more","care0020",5,25927,9944,0.2,212479,166 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",37,"The total number of initial assessments that took 8 days or more to complete","care0020",5,647,679,0.8,8467,14 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",38,"The number of required core assessments completed within 35 working days during the year","care0020",5,125,334,0.6,11177,11 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",39,"The number of core assessments that were completed during the year","care0020",5,203,485,0.6,13857,52 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",21,"Young people aged 19 who were looked after when aged 16","care0027",9,15,15,0.444444444444444,497,2 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",22,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19","care0027",9,15,14,0.444444444444444,463,1 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",23,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at age 19 and are known to be in suitable, non emergency accommodation","care0027",9,12,13,0.444444444444444,433,1 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",24,"Young people aged 19 who were looked after when aged 16, with whom the authority is in contact at the age of 19 and known to be engaged in education, training or employment","care0027",9,7,12,0.555555555555556,281,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",25,"Number of eligible, relevant and former relevant children that have a pathway plan at 31 March as required","care0027",9,44,89,0.555555555555556,2285,5 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",26,"Number of eligible, relevant and former relevant children who should have a pathway plan at 31 March","care0027",9,48,98,0.555555555555556,2491,6 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",27,"Number of eligible, relevant and former relevant children that have been allocated a personal advisor at 31 March","care0027",8,47,102,0.75,2254,0 +"Wrexham","522","Total service expenditure",60,247816.38498815,"200203","202122","Social Care - Child",28,"Number of eligible, relevant and former relevant children who should have been allocated a personal advisor at 31 March","care0027",6,63,102,0.5,2556,6 diff --git a/wales/spot_indicator_mapping_table.csv b/wales/spot_indicator_mapping_table.csv new file mode 100644 index 0000000..ec7777b --- /dev/null +++ b/wales/spot_indicator_mapping_table.csv @@ -0,0 +1,631 @@ +category,id,name,type +Central,2212,Spend: Total Central services,Spend +Central,2682,"Annual employment rate, aged 16-64",Outcome +Central,2683,"Annual unemployment rate, aged 16-64",Outcome +Central,2684,Economically inactive - aged 16-64,Outcome +Child Health,2019,Spend: Children 5-19 public health programmes,Spend +Child Health,92315,Percentage of looked after children whose emotional wellbeing is a cause for concern,Outcome +Child Health,90801,Child mortality rate (1-17 years),Outcome +Child Health,90803,Children in care,Outcome +Child Health,811,Children in care immunisations,Outcome +Child Health,90820,"Children with one or more decayed, missing or filled teeth",Outcome +Child Health,90819,Family homelessness,Outcome +Child Health,90813,Hospital admissions as a result of self-harm (10-24 years),Outcome +Child Health,90810,Hospital admissions for asthma (under 19 years),Outcome +Child Health,90812,Hospital admissions for mental health conditions,Outcome +Child Health,90808,Hospital admissions due to substance misuse (15-24 years),Outcome +Child Health,90809,A&E attendances (0-4 years),Outcome +Child Health,90510,Neonatal mortality and stillbirth rate,Outcome +Child Health,90811,Teenage mothers,Outcome +Child Health,90630,Children in low income families (all dependent children under 20),Outcome +Child Health,10101,Children in low income families (under 16s),Outcome +Child Health,90631,School readiness: percentage of children achieving a good level of development at the end of Reception,Outcome +Child Health,90632,School Readiness: percentage of children with free school meal status achieving a good level of development at the end of Reception,Outcome +Child Health,90633,School readiness: percentage of children achieving the expected level in the phonics screening check in Year 1,Outcome +Child Health,90634,School readiness: percentage of children with free school meal status achieving the expected level in the phonics screening check in Year 1,Outcome +Child Health,10301,Pupil absence,Outcome +Child Health,93203,"16 to 17 year olds not in education, employment or training (NEET) or whose activity is not known",Outcome +Child Health,20101,Low birth weight of term babies,Outcome +Child Health,20401,"Under 18s conception rate / 1,000",Outcome +Child Health,90639,"Under 16s conception rate / 1,000",Outcome +Child Health,90284,Hospital admissions caused by unintentional and deliberate injuries in children (aged 0 to 14 years),Outcome +Child Health,90285,Hospital admissions caused by unintentional and deliberate injuries in young people (aged 15 to 24 years),Outcome +Child Health,92196,Infant mortality rate,Outcome +Child Health,92441,Proportion of five year old children free from dental decay,Outcome +Child Health,90804,Children killed and seriously injured (KSI) on England's roads,Outcome +Cultural,2195,Spend: Total Cultural and related services,Spend +Cultural,93014,Percentage of physically active adults,Outcome +Drugs and Alcohol,2012,Spend: Substance misuse - Drug misuse - adults,Spend +Drugs and Alcohol,2013,Spend: Substance misuse - Alcohol misuse - adults,Spend +Drugs and Alcohol,2014,Spend: Substance misuse - Preventing and reducing harm from drug misuse in adults,Spend +Drugs and Alcohol,2015,Spend: Substance misuse - Preventing and reducing harm from alcohol misuse in adults,Spend +Drugs and Alcohol,2016,Spend: Substance misuse - (drugs and alcohol) - youth services,Spend +Drugs and Alcohol,92447,Successful completion of alcohol treatment,Outcome +Drugs and Alcohol,93764,"Admission episodes for alcohol-related conditions (Narrow): New method. This indicator uses a new set of attributable fractions, and so differ from that originally published.",Outcome +Education,2026,Spend: Total Education services,Spend +Education,2041,Spend: DFE s251 RO Net Expenditure,Spend +Education,2522,5 or more A*-C grades at GCSE (inc english and maths),Outcome +Education,2531,"Level 4+ in reading, writing and maths at key stage 2",Outcome +Education,2533,Narrowing the gap - lowest 20% early years foundation stage,Outcome +Education,2534,"Proportion attaining Level 2 in English and Maths by age 19, who had not achieved this level by age 16.",Outcome +Education,2536,"Overall absence in primary, secondary and special schools",Outcome +Education,2539,Progression by 2 levels in maths between KS1 and KS2,Outcome +Education,2540,Progression by 2 levels in reading between KS1 and KS2,Outcome +Education,2541,Progression by 2 levels in writing between KS1 and KS2,Outcome +Education,2542,Rate of permanent exclusions from school,Outcome +Education,2544,Secondary school pupils missing 22 or more sessions Autumn Term,Outcome +Education,2549,"Education, health and care (EHC) plans within 20 weeks (including exceptional)",Outcome +Education,2550,"Education, health and care (EHC) plans within 20 weeks (excluding exceptional)",Outcome +Education,2551,Young people who have attained a full level 3 qualification by age 19,Outcome +Education,2570,Looked after children with SDQ score of concern,Outcome +Education,92672,"Key stage 2 pupils meeting the expected standard in reading, writing and maths",Outcome +Env & Reg,2122,Spend: Total Environmental and regulatory services,Spend +Env & Reg,2631,"Household waste sent for reuse, recycling and composting",Outcome +Env & Reg,2639,Municipal waste landfilled,Outcome +Env & Reg,2640,Residual household waste per household,Outcome +Env & Reg,2643,Waste collected per head,Outcome +Env & Reg,10401,First time entrants to the youth justice system,Outcome +Health Improvement,2006,Spend: National child measurement programme,Spend +Health Improvement,2008,Spend: Obesity - adults,Spend +Health Improvement,2009,Spend: Obesity - children,Spend +Health Improvement,2010,Spend: Physical activity - adults,Spend +Health Improvement,2011,Spend: Physical activity - children,Spend +Health Improvement,93014,Percentage of physically active adults,Outcome +Health Improvement,93077,Proportion of the population meeting the recommended '5-a-day' on a 'usual day' (adults),Outcome +Health Improvement,93078,Average number of portions of fruit consumed daily (adults),Outcome +Health Improvement,93079,Average number of portions of vegetables consumed daily (adults),Outcome +Health Improvement,91496,Percentage who eat 5 portions or more of fruit and veg per day at age 15,Outcome +Health Improvement,93088,Percentage of adults (aged 18+) classified as overweight or obese,Outcome +Health Improvement,93015,Percentage of physically inactive adults,Outcome +Health Improvement,91099,Cumulative percentage of the eligible population aged 40-74 offered an NHS Health Check,Outcome +Health Improvement,91100,Cumulative percentage of the eligible population aged 40-74 offered an NHS Health Check who received an NHS Health Check,Outcome +Health Improvement,91101,Cumulative percentage of the eligible population aged 40-74 who received an NHS Health check,Outcome +Health Improvement,22401,Emergency hospital admissions due to falls in people aged 65 and over,Outcome +Health Improvement,22402,Emergency hospital admissions due to falls in people aged 65-79,Outcome +Health Improvement,22403,Emergency hospital admissions due to falls in people aged 80+,Outcome +Health Improvement,10601,Adults with a learning disability who live in stable and appropriate accommodation,Outcome +Health Improvement,90282,Gap in the employment rate between those with a physical or mental long term health condition (aged 16 to 64) and the overall employment rate,Outcome +Health Improvement,90283,Gap in the employment rate between those who are in receipt of long term support for a learning disability (aged 18 to 64) and the overall employment rate,Outcome +Health Improvement,11601,Utilisation of outdoor space for exercise/health reasons,Outcome +Health Improvement,20201,Breastfeeding initiation,Outcome +Health Improvement,92517,Breastfeeding prevalence at 6-8 weeks after birth - current method,Outcome +Health Improvement,20601,Reception: Prevalence of overweight (including obesity),Outcome +Health Improvement,20602,Year 6: Prevalence of overweight (including obesity),Outcome +Health Improvement,41401,Hip fractures in people aged 65 and over,Outcome +Health Improvement,41402,Hip fractures in people aged 65 to 79,Outcome +Health Improvement,41403,Hip fractures in people aged 80 and over,Outcome +Health Improvement,93580,Baby's first feed breastmilk,Outcome +Health Protection,2005,Spend: Health protection - Local authority role in health protection,Spend +Health Protection,22001,Cancer screening coverage - breast cancer,Outcome +Health Protection,22002,Cancer screening coverage - cervical cancer,Outcome +Health Protection,91720,Cancer screening coverage: bowel cancer,Outcome +Health Protection,92317,Abdominal Aortic Aneurysm Screening - Coverage,Outcome +Health Protection,91323,Newborn Blood Spot Screening: Coverage,Outcome +Health Protection,91324,Newborn Hearing Screening : Coverage,Outcome +Health Protection,30101,Fraction of mortality attributable to particulate air pollution (old method),Outcome +Health Protection,30301,Population vaccination coverage - Hepatitis B (1 year old),Outcome +Health Protection,30302,Population vaccination coverage - Hepatitis B (2 years old),Outcome +Health Protection,91367,Proportion of drug sensitive TB cases who had completed a full course of treatment by 12 months,Outcome +Health Protection,11001,Killed and seriously injured (KSI) casualties on England's roads (historic data),Outcome +Health Protection,11401,The rate of complaints about noise,Outcome +Health Protection,90357,"The percentage of the population exposed to road, rail and air transport noise of 65dB(A) or more, during the daytime",Outcome +Health Protection,90358,"The percentage of the population exposed to road, rail and air transport noise of 55 dB(A) or more during the night-time",Outcome +Health Protection,90356,"Fuel poverty (low income, high cost methodology)",Outcome +Health Protection,30303,Population vaccination coverage: Dtap IPV Hib (1 year old),Outcome +Health Protection,30304,Population vaccination coverage: Dtap IPV Hib (2 years old),Outcome +Health Protection,30306,Population vaccination coverage: PCV,Outcome +Health Protection,30307,Population vaccination coverage: Hib and MenC booster (2 years old),Outcome +Health Protection,90246,Population vaccination coverage - Hib / Men C booster (5 years old),Outcome +Health Protection,30308,Population vaccination coverage: PCV booster,Outcome +Health Protection,30309,Population vaccination coverage: MMR for one dose (2 years old),Outcome +Health Protection,30310,Population vaccination coverage: MMR for one dose (5 years old),Outcome +Health Protection,30311,Population vaccination coverage: MMR for two doses (5 years old),Outcome +Health Protection,92319,Population vaccination coverage - HPV vaccination coverage for one dose (12-13 years old),Outcome +Health Protection,30313,Population vaccination coverage: PPV,Outcome +Health Protection,30314,Population vaccination coverage: Flu (aged 65 and over),Outcome +Health Protection,30315,Population vaccination coverage: Flu (at risk individuals),Outcome +Health Protection,92324,Population vaccination coverage - Shingles vaccination coverage (70 years old),Outcome +Health Protection,91361,TB incidence (three year average),Outcome +Health Protection,30601,NHS organisations with a board approved sustainable development management plan,Outcome +Health Protection,92326,"Mortality rate from a range of specified communicable diseases, including influenza",Outcome +Health Protection,90360,Excess winter deaths index,Outcome +Health Protection,90361,Excess winter deaths index (age 85+),Outcome +Health Protection,90641,"Excess winter deaths index (3 years, all ages)",Outcome +Health Protection,90642,"Excess winter deaths index (3 years, age 85+)",Outcome +Healthcare,2004,Spend: NHS health check programme,Spend +Healthcare,2007,Spend: Public health advice,Spend +Healthcare,2500,Access to GP services,Outcome +Healthcare,2501,Access to NHS dental services,Outcome +Healthcare,2503,Emergency admissions acute conditions not usually require hospital,Outcome +Healthcare,2504,Emergency admissions for children with LRTI,Outcome +Healthcare,2505,Health-related quality of life for carers,Outcome +Healthcare,2506,Health-related quality of life for people with long-term conditions,Outcome +Healthcare,2512,Patient experience of dental services,Outcome +Healthcare,2513,Patient experience of GP out-of-hours services,Outcome +Healthcare,2514,Patient experience of GP services,Outcome +Healthcare,2515,Proportion of people feeling supported to manage their condition,Outcome +Healthcare,2516,PYLL from causes amenable to healthcare - adults,Outcome +Healthcare,2519,Tooth extractions due to decay for children admitted as inpatients,Outcome +Healthcare,2520,"Unplanned hospitalisation for asthma, diabetes and epilepsy u19s",Outcome +Healthcare,2521,Unplanned hospitalisation for chronic ambulatory care sensitive,Outcome +Healthcare,93347,Estimated diabetes diagnosis rate,Outcome +Healthcare,90834,Cancer diagnosed at early stage (experimental statistics),Outcome +Healthcare,40401,Under 75 mortality rate from all cardiovascular diseases,Outcome +Healthcare,40501,Under 75 mortality rate from cancer,Outcome +Healthcare,40601,Under 75 mortality rate from liver disease,Outcome +Healthcare,40701,Under 75 mortality rate from respiratory disease,Outcome +Healthcare,90584,Percentage of people aged 65 and over who were still at home 91 days after discharge from hospital into reablement services,Outcome +Healthcare,93722,Under 75 mortality rate from cardiovascular diseases considered preventable (2019 definition),Outcome +Healthcare,93723,Under 75 mortality rate from cancer considered preventable (2019 definition),Outcome +Healthcare,93720,Under 75 mortality rate from liver disease considered preventable (2019 definition),Outcome +Healthcare,93724,Under 75 mortality rate from respiratory disease considered preventable (2019 definition),Outcome +Healthcare,41201,Preventable sight loss - age related macular degeneration (AMD),Outcome +Healthcare,41202,Preventable sight loss - glaucoma,Outcome +Healthcare,41203,Preventable sight loss: diabetic eye disease,Outcome +Healthcare,41204,Preventable sight loss - sight loss certifications,Outcome +Healthcare,91195,Health related quality of life for older people,Outcome +Healthcare,93721,Under 75 mortality rate from causes considered preventable (2019 definition),Outcome +Highways,2168,Spend: Total Highways and transport services,Spend +Highways,2648,Bus services running on time,Outcome +Highways,2649,Ease of Access to Key Services (all people),Outcome +Highways,2650,Ease of Access to Key Services (no car households),Outcome +Highways,2651,Ease of Access to Key Services (people with disabilities),Outcome +Highways,2652,Highway Enforcement / Obstructions,Outcome +Highways,2653,Non-principal classified roads where maintenance should be considered,Outcome +Highways,2654,Overall Satisfaction with Community Transport,Outcome +Highways,2655,Overall Satisfaction with Cycle Routes & Facilities,Outcome +Highways,2656,Overall Satisfaction with Highways & Transport (local),Outcome +Highways,2657,Overall Satisfaction with Highways & Transport (national),Outcome +Highways,2658,Overall Satisfaction with Local bus services,Outcome +Highways,2659,Overall Satisfaction with Local taxi (or mini-cab) services,Outcome +Highways,2660,Overall Satisfaction with Pavements & Footpaths,Outcome +Highways,2661,Overall Satisfaction with Road Safety Locally,Outcome +Highways,2662,Overall Satisfaction with Street lighting,Outcome +Highways,2663,Overall Satisfaction with the Condition of Highways,Outcome +Highways,2664,Overall Satisfaction with The Local Rights of Way Network,Outcome +Highways,2665,Overall Satisfaction with Traffic Levels & Congestion,Outcome +Highways,2666,Principal roads where maintenance should be considered,Outcome +Highways,2669,Satisfaction with Highway Maintenance,Outcome +Highways,2670,Satisfaction with Local Bus Services (BVPI 104),Outcome +Highways,2671,Satisfaction with Local PT Information (BVPI103),Outcome +Highways,2672,Satisfaction with Management of Roadworks,Outcome +Highways,2673,Satisfaction with Road Safety Education,Outcome +Highways,2674,Satisfaction with Road Safety Environment,Outcome +Highways,2675,Satisfaction with specific aspects of Cycle Routes & Facilities,Outcome +Highways,2676,Satisfaction with specific aspects of Pavements & Footpaths,Outcome +Highways,2677,Satisfaction with specific aspects of Rights of Way Network,Outcome +Highways,2678,Satisfaction with Traffic Management,Outcome +Housing,2093,Spend: Total Housing services (GFRA only),Spend +Housing,2618,(LA-owned) non-decent homes,Outcome +Housing,2619,Average weekly rent per dwelling,Outcome +Housing,2624,Net additional homes provided,Outcome +Housing,2626,Number of affordable homes provided,Outcome +Housing,2627,Rent collection rate,Outcome +Housing,2628,Time to process benefit change of circumstance,Outcome +Mental Health,2024,Spend: Public mental health,Spend +Mental Health,2076,Spend: Mental health support - adults (18-64),Spend +Mental Health,2077,Spend: Mental health support - older people (65+),Spend +Mental Health,21001,Emergency Hospital Admissions for Intentional Self-Harm,Outcome +Mental Health,22301,Self reported wellbeing: people with a low satisfaction score,Outcome +Mental Health,22302,Self reported wellbeing: people with a low worthwhile score,Outcome +Mental Health,22303,Self reported wellbeing: people with a low happiness score,Outcome +Mental Health,22304,Self reported wellbeing: people with a high anxiety score,Outcome +Mental Health,41001,Suicide rate,Outcome +Mental Health,10602,Adults in contact with secondary mental health services who live in stable and appropriate accommodation,Outcome +Mental Health,90635,"Gap in the employment rate for those who are in contact with secondary mental health services (aged 18 to 69) and on the Care Plan Approach, and the overall employment rate",Outcome +Mental Health,92313,Percentage of people in employment,Outcome +Mental Health,90286,Sickness absence: the percentage of employees who had at least one day off in the previous week,Outcome +Mental Health,90287,Sickness absence: the percentage of working days lost due to sickness absence,Outcome +Mental Health,92314,Statutory homelessness - Eligible homeless people not in priority need,Outcome +Mental Health,11502,Statutory homelessness - households in temporary accommodation,Outcome +Mental Health,90280,Social Isolation: percentage of adult social care users who have as much social contact as they would like,Outcome +Mental Health,90638,Social Isolation: percentage of adult carers who have as much social contact as they would like,Outcome +Planning,2152,Spend: Total Planning and development services,Spend +Planning,2644,Processing of major planning applications in target,Outcome +Planning,2645,Processing of minor planning applications in target,Outcome +Planning,2646,Processing of other planning applications in target,Outcome +Public Health,2000,Spend: Total Public Health,Spend +Public Health,92641,Life expectancy at 75 (SPOT: NHSOD 1b),Outcome +Public Health,93014,Percentage of physically active adults,Outcome +Public Health,92315,Percentage of looked after children whose emotional wellbeing is a cause for concern,Outcome +Public Health,91548,Smoking prevalence at age 15 - current smokers (WAY survey),Outcome +Public Health,91552,Smoking prevalence at age 15 - regular smokers (WAY survey),Outcome +Public Health,21001,Emergency Hospital Admissions for Intentional Self-Harm,Outcome +Public Health,93077,Proportion of the population meeting the recommended '5-a-day' on a 'usual day' (adults),Outcome +Public Health,93078,Average number of portions of fruit consumed daily (adults),Outcome +Public Health,93079,Average number of portions of vegetables consumed daily (adults),Outcome +Public Health,91496,Percentage who eat 5 portions or more of fruit and veg per day at age 15,Outcome +Public Health,93088,Percentage of adults (aged 18+) classified as overweight or obese,Outcome +Public Health,93015,Percentage of physically inactive adults,Outcome +Public Health,92443,Smoking Prevalence in adults (18+) - current smokers (APS),Outcome +Public Health,90244,Successful completion of drug treatment: opiate users,Outcome +Public Health,90245,Successful completion of drug treatment: non opiate users,Outcome +Public Health,92447,Successful completion of alcohol treatment,Outcome +Public Health,92432,Deaths from drug misuse,Outcome +Public Health,92544,Adults with substance misuse treatment need who successfully engage in community-based structured treatment following release from prison,Outcome +Public Health,93347,Estimated diabetes diagnosis rate,Outcome +Public Health,90834,Cancer diagnosed at early stage (experimental statistics),Outcome +Public Health,22001,Cancer screening coverage - breast cancer,Outcome +Public Health,22002,Cancer screening coverage - cervical cancer,Outcome +Public Health,91720,Cancer screening coverage: bowel cancer,Outcome +Public Health,92317,Abdominal Aortic Aneurysm Screening - Coverage,Outcome +Public Health,91323,Newborn Blood Spot Screening: Coverage,Outcome +Public Health,91324,Newborn Hearing Screening: Coverage,Outcome +Public Health,91099,Cumulative percentage of the eligible population aged 40-74 offered an NHS Health Check,Outcome +Public Health,91100,Cumulative percentage of the eligible population aged 40-74 offered an NHS Health Check who received an NHS Health Check,Outcome +Public Health,91101,Cumulative percentage of the eligible population aged 40-74 who received an NHS Health check,Outcome +Public Health,22301,Self reported wellbeing: people with a low satisfaction score,Outcome +Public Health,22302,Self reported wellbeing: people with a low worthwhile score,Outcome +Public Health,22303,Self reported wellbeing: people with a low happiness score,Outcome +Public Health,22304,Self reported wellbeing: people with a high anxiety score,Outcome +Public Health,22401,Emergency hospital admissions due to falls in people aged 65 and over,Outcome +Public Health,22402,Emergency hospital admissions due to falls in people aged 65-79,Outcome +Public Health,22403,Emergency hospital admissions due to falls in people aged 80+,Outcome +Public Health,30101,Fraction of mortality attributable to particulate air pollution (old method),Outcome +Public Health,90776,"Chlamydia detection rate per 100,000 aged 15 to 24",Outcome +Public Health,91514,"Chlamydia detection rate / 100,000 aged 15 to 24",Outcome +Public Health,30301,Population vaccination coverage: Hepatitis B (1 year old),Outcome +Public Health,30302,Population vaccination coverage: Hepatitis B (2 years old),Outcome +Public Health,91367,Proportion of drug sensitive TB cases who had completed a full course of treatment by 12 months,Outcome +Public Health,93386,Population vaccination coverage: Flu (2 to 3 years old),Outcome +Public Health,90791,HIV late diagnosis in people first diagnosed with HIV in the UK,Outcome +Public Health,1210,Smokers that have successfully quit at 4 weeks,Outcome +Public Health,1211,Smokers that have successfully quit at 4 weeks (CO validated),Outcome +Public Health,91743,Premature births (less than 37 weeks gestation),Outcome +Public Health,92302,Emergency hospital admissions for COPD,Outcome +Public Health,91182,Number in treatment at specialist alcohol misuse services,Outcome +Public Health,92455,Adults in treatment at specialist alcohol misuse services: rate per 1000 population,Outcome +Public Health,1204,Mortality rate from chronic obstructive pulmonary disease,Outcome +Public Health,91404,"Years of life lost due to suicide, age-standardised rate 15-74 years: per 10,000 population (3 year average)",Outcome +Public Health,91381,Mortality from chronic liver disease,Outcome +Public Health,92323,Incidence rate of alcohol-related cancer,Outcome +Public Health,91917,Alcohol Related Road Traffic Accidents,Outcome +Public Health,91872,Deprivation score (IMD 2015),Outcome +Public Health,90759,"Gonorrhoea diagnostic rate per 100,000",Outcome +Public Health,90741,Under 25s repeat abortions (%),Outcome +Public Health,90784,Abortions under 10 weeks (%),Outcome +Public Health,90801,Child mortality rate (1-17 years),Outcome +Public Health,90729,"Genital warts diagnostic rate per 100,000",Outcome +Public Health,90803,Children in care,Outcome +Public Health,811,Children in care immunisations,Outcome +Public Health,90731,Under 18s conceptions leading to abortion (%),Outcome +Public Health,91046,"Genital herpes diagnosis rate per 100,000",Outcome +Public Health,91049,"HIV testing coverage, gay, bisexual and other men who have sex with men (%)",Outcome +Public Health,91048,"HIV testing coverage, women (%)",Outcome +Public Health,91050,"HIV testing coverage, men (%)",Outcome +Public Health,90754,Total abortion rate / 1000,Outcome +Public Health,90820,"Children with one or more decayed, missing or filled teeth",Outcome +Public Health,90739,"Pelvic inflammatory disease (PID) admissions rate / 100,000",Outcome +Public Health,90819,Family homelessness,Outcome +Public Health,90740,"Ectopic pregnancy admissions rate / 100,000",Outcome +Public Health,90813,Hospital admissions as a result of self-harm (10-24 years),Outcome +Public Health,90810,Hospital admissions for asthma (under 19 years),Outcome +Public Health,91456,"Under 18s abortions rate / 1,000",Outcome +Public Health,90812,Hospital admissions for mental health conditions,Outcome +Public Health,91458,"Under 18s births rate / 1,000",Outcome +Public Health,92543,Proportion of children aged 2-2½yrs receiving ASQ-3 as part of the Healthy Child Programme or integrated review,Outcome +Public Health,92445,Smoking prevalence in adults in routine and manual occupations (18-64) - current smokers (APS),Outcome +Public Health,40401,Under 75 mortality rate from all cardiovascular diseases,Outcome +Public Health,40501,Under 75 mortality rate from cancer,Outcome +Public Health,40601,Under 75 mortality rate from liver disease,Outcome +Public Health,40701,Under 75 mortality rate from respiratory disease,Outcome +Public Health,41001,Suicide rate,Outcome +Public Health,90777,Chlamydia proportion aged 15 to 24 screened,Outcome +Public Health,90790,"HIV diagnosed prevalence rate per 1,000 aged 15 to 59",Outcome +Public Health,91819,"GP prescribed LARC excluding injections rate / 1,000",Outcome +Public Health,90319,Reception: Prevalence of obesity (including severe obesity),Outcome +Public Health,93195,Year 6: Prevalence of severe obesity,Outcome +Public Health,90808,Hospital admissions due to substance misuse (15-24 years),Outcome +Public Health,90809,A&E attendances (0-4 years),Outcome +Public Health,92454,Adults in treatment at specialist drug misuse services: rate per 1000 population,Outcome +Public Health,91133,Long term claimants of Jobseeker's Allowance,Outcome +Public Health,93572,Re-offending levels - average number of re-offences per re-offender,Outcome +Public Health,93722,Under 75 mortality rate from cardiovascular diseases considered preventable (2019 definition),Outcome +Public Health,93723,Under 75 mortality rate from cancer considered preventable (2019 definition),Outcome +Public Health,93720,Under 75 mortality rate from liver disease considered preventable (2019 definition),Outcome +Public Health,93724,Under 75 mortality rate from respiratory disease considered preventable (2019 definition),Outcome +Public Health,93764,"Admission episodes for alcohol-related conditions (Narrow): New method. This indicator uses a new set of attributable fractions, and so differ from that originally published.",Outcome +Public Health,93748,Smoking attributable mortality (new method),Outcome +Public Health,93750,Smoking attributable deaths from heart disease (new method),Outcome +Public Health,93753,"Smoking attributable hospital admissions (new method). This indicator uses new set of attributable fractions, and so differ from that originally published.",Outcome +Public Health,90811,Teenage mothers,Outcome +Public Health,91380,Alcohol-specific mortality,Outcome +Public Health,92904,Admission episodes for alcohol-specific conditions - Under 18s,Outcome +Public Health,92906,Admission episodes for alcohol-specific conditions,Outcome +Public Health,90362,Healthy life expectancy at birth,Outcome +Public Health,90366,Life expectancy at birth,Outcome +Public Health,92901,Inequality in life expectancy at birth,Outcome +Public Health,90365,Gap in life expectancy at birth between each local authority and England as a whole,Outcome +Public Health,90630,Children in low income families (all dependent children under 20),Outcome +Public Health,10101,Children in low income families (under 16s),Outcome +Public Health,90631,School readiness: percentage of children achieving a good level of development at the end of Reception,Outcome +Public Health,90632,School Readiness: percentage of children with free school meal status achieving a good level of development at the end of Reception,Outcome +Public Health,90633,School readiness: percentage of children achieving the expected level in the phonics screening check in Year 1,Outcome +Public Health,90634,School readiness: percentage of children with free school meal status achieving the expected level in the phonics screening check in Year 1,Outcome +Public Health,10301,Pupil absence,Outcome +Public Health,10401,First time entrants to the youth justice system,Outcome +Public Health,93203,"16 to 17 year olds not in education, employment or training (NEET) or whose activity is not known",Outcome +Public Health,10601,Adults with a learning disability who live in stable and appropriate accommodation,Outcome +Public Health,10602,Adults in contact with secondary mental health services who live in stable and appropriate accommodation,Outcome +Public Health,90282,Gap in the employment rate between those with a physical or mental long term health condition (aged 16 to 64) and the overall employment rate,Outcome +Public Health,90283,Gap in the employment rate between those who are in receipt of long term support for a learning disability (aged 18 to 64) and the overall employment rate,Outcome +Public Health,90635,"Gap in the employment rate for those who are in contact with secondary mental health services (aged 18 to 69) and on the Care Plan Approach, and the overall employment rate",Outcome +Public Health,92313,Percentage of people in employment,Outcome +Public Health,90286,Sickness absence: the percentage of employees who had at least one day off in the previous week,Outcome +Public Health,90287,Sickness absence: the percentage of working days lost due to sickness absence,Outcome +Public Health,11001,Killed and seriously injured (KSI) casualties on England's roads (historic data),Outcome +Public Health,92863,Domestic abuse related incidents and crimes,Outcome +Public Health,11201,Violent crime - hospital admissions for violence (including sexual violence),Outcome +Public Health,11202,"Violent crime - violence offences per 1,000 population",Outcome +Public Health,90637,"Violent crime - sexual offences per 1,000 population",Outcome +Public Health,93513,Re-offending levels - percentage of offenders who re-offend,Outcome +Public Health,92456,First time offenders,Outcome +Public Health,11401,The rate of complaints about noise,Outcome +Public Health,90357,"The percentage of the population exposed to road, rail and air transport noise of 65dB(A) or more, during the daytime",Outcome +Public Health,90358,"The percentage of the population exposed to road, rail and air transport noise of 55 dB(A) or more during the night-time",Outcome +Public Health,92314,Statutory homelessness - Eligible homeless people not in priority need,Outcome +Public Health,11502,Statutory homelessness - households in temporary accommodation,Outcome +Public Health,11601,Utilisation of outdoor space for exercise/health reasons,Outcome +Public Health,90356,"Fuel poverty (low income, high cost methodology)",Outcome +Public Health,90280,Social Isolation: percentage of adult social care users who have as much social contact as they would like,Outcome +Public Health,90638,Social Isolation: percentage of adult carers who have as much social contact as they would like,Outcome +Public Health,20101,Low birth weight of term babies,Outcome +Public Health,20201,Breastfeeding initiation,Outcome +Public Health,92517,Breastfeeding prevalence at 6-8 weeks after birth - current method,Outcome +Public Health,93085,Smoking status at time of delivery,Outcome +Public Health,20401,"Under 18s conception rate / 1,000",Outcome +Public Health,90639,"Under 16s conception rate / 1,000",Outcome +Public Health,20601,Reception: Prevalence of overweight (including obesity),Outcome +Public Health,20602,Year 6: Prevalence of overweight (including obesity),Outcome +Public Health,90284,Hospital admissions caused by unintentional and deliberate injuries in children (aged 0 to 14 years),Outcome +Public Health,90285,Hospital admissions caused by unintentional and deliberate injuries in young people (aged 15 to 24 years),Outcome +Public Health,30303,Population vaccination coverage: Dtap IPV Hib (1 year old),Outcome +Public Health,30304,Population vaccination coverage: Dtap IPV Hib (2 years old),Outcome +Public Health,30306,Population vaccination coverage: PCV,Outcome +Public Health,30307,Population vaccination coverage: Hib and MenC booster (2 years old),Outcome +Public Health,90246,Population vaccination coverage - Hib / Men C booster (5 years old),Outcome +Public Health,30308,Population vaccination coverage: PCV booster,Outcome +Public Health,30309,Population vaccination coverage: MMR for one dose (2 years old),Outcome +Public Health,30310,Population vaccination coverage: MMR for one dose (5 years old),Outcome +Public Health,30311,Population vaccination coverage: MMR for two doses (5 years old),Outcome +Public Health,92319,Population vaccination coverage - HPV vaccination coverage for one dose (12-13 years old),Outcome +Public Health,30313,Population vaccination coverage: PPV,Outcome +Public Health,30314,Population vaccination coverage: Flu (aged 65 and over),Outcome +Public Health,30315,Population vaccination coverage: Flu (at risk individuals),Outcome +Public Health,92324,Population vaccination coverage - Shingles vaccination coverage (70 years old),Outcome +Public Health,91361,TB incidence (three year average),Outcome +Public Health,30601,NHS organisations with a board approved sustainable development management plan,Outcome +Public Health,92196,Infant mortality rate,Outcome +Public Health,92441,Proportion of five year old children free from dental decay,Outcome +Public Health,90804,Children killed and seriously injured (KSI) on England's roads,Outcome +Public Health,92326,"Mortality rate from a range of specified communicable diseases, including influenza",Outcome +Public Health,41201,Preventable sight loss - age related macular degeneration (AMD),Outcome +Public Health,41202,Preventable sight loss - glaucoma,Outcome +Public Health,41203,Preventable sight loss: diabetic eye disease,Outcome +Public Health,41204,Preventable sight loss - sight loss certifications,Outcome +Public Health,91195,Health related quality of life for older people,Outcome +Public Health,41401,Hip fractures in people aged 65 and over,Outcome +Public Health,41402,Hip fractures in people aged 65 to 79,Outcome +Public Health,41403,Hip fractures in people aged 80 and over,Outcome +Public Health,90360,Excess winter deaths index,Outcome +Public Health,90361,Excess winter deaths index (age 85+),Outcome +Public Health,90641,"Excess winter deaths index (3 years, all ages)",Outcome +Public Health,90642,"Excess winter deaths index (3 years, age 85+)",Outcome +Public Health,1203,Mortality rate from lung cancer,Outcome +Public Health,1205,Lung cancer registrations,Outcome +Public Health,1206,Oral cancer registrations,Outcome +Public Health,93580,Baby's first feed breastmilk,Outcome +Public Health,93721,Under 75 mortality rate from causes considered preventable (2019 definition),Outcome +Sexual Health,2001,Spend: Sexual health services - STI testing and treatment,Spend +Sexual Health,2002,Spend: Sexual health services - Contraception,Spend +Sexual Health,2003,"Spend: Sexual health services - Advice, prevention and promotion",Spend +Sexual Health,90776,"Chlamydia detection rate per 100,000 aged 15 to 24",Outcome +Sexual Health,90791,HIV late diagnosis in people first diagnosed with HIV in the UK,Outcome +Sexual Health,90759,"Gonorrhoea diagnostic rate per 100,000",Outcome +Sexual Health,90741,Under 25s repeat abortions (%),Outcome +Sexual Health,90784,Abortions under 10 weeks (%),Outcome +Sexual Health,90729,"Genital warts diagnostic rate per 100,000",Outcome +Sexual Health,90731,Under 18s conceptions leading to abortion (%),Outcome +Sexual Health,91046,"Genital herpes diagnosis rate per 100,000",Outcome +Sexual Health,91049,"HIV testing coverage, gay, bisexual and other men who have sex with men (%)",Outcome +Sexual Health,91048,"HIV testing coverage, women (%)",Outcome +Sexual Health,91050,"HIV testing coverage, men (%)",Outcome +Sexual Health,90754,Total abortion rate / 1000,Outcome +Sexual Health,90739,"Pelvic inflammatory disease (PID) admissions rate / 100,000",Outcome +Sexual Health,90740,"Ectopic pregnancy admissions rate / 100,000",Outcome +Sexual Health,91456,"Under 18s abortions rate / 1,000",Outcome +Sexual Health,91458,"Under 18s births rate / 1,000",Outcome +Sexual Health,90777,Chlamydia proportion aged 15 to 24 screened,Outcome +Sexual Health,90790,"HIV diagnosed prevalence rate per 1,000 aged 15 to 59",Outcome +Sexual Health,91819,"GP prescribed LARC excluding injections rate / 1,000",Outcome +Social Care - Adults,2062,Spend: Total Adult Social Care,Spend +Social Care - Adults,2589,Carer reported quality of life,Outcome +Social Care - Adults,2590,Carers (very or extremely satisfied) with social services,Outcome +Social Care - Adults,2591,Carers in discussion about the person they care for,Outcome +Social Care - Adults,2596,Delayed transfer of care from hospital attributable adult social care,Outcome +Social Care - Adults,2597,Delayed transfers of care from hospital,Outcome +Social Care - Adults,2601,People who use services who feel safe,Outcome +Social Care - Adults,2602,People who use services who receive direct payments,Outcome +Social Care - Adults,2603,People who use services who receive self-directed support,Outcome +Social Care - Adults,2604,"Permanent admissions to residential and nursing care homes, (18-64)",Outcome +Social Care - Adults,2606,Service users (very+ satisfied) with their care and support,Outcome +Social Care - Adults,2607,Proportion of service users who find it easy to find information,Outcome +Social Care - Adults,2608,Service users having control over their daily life,Outcome +Social Care - Adults,2609,Service users saying services make feel safe and secure,Outcome +Social Care - Adults,2611,Social care related quality of life,Outcome +Social Care - Adults,2612,The outcome of short-term services: sequel to service,Outcome +Social Care - Adults,1194,"Permanent admissions to residential and nursing care homes per 100,000 aged 65+",Outcome +Social Care - Adults,90585,Percentage of people aged 65 and over offered reablement services following discharge from hospital.,Outcome +Social Care - Adults,90283,Gap in the employment rate between those who are in receipt of long term support for a learning disability (aged 18 to 64) and the overall employment rate,Outcome +Social Care - Adults,90635,"Gap in the employment rate for those who are in contact with secondary mental health services (aged 18 to 69) and on the Care Plan Approach, and the overall employment rate",Outcome +Social Care - Child,2047,Spend: Total Children Social Care,Spend +Social Care - Child,2553,"Assessments completed per 10,000 children",Outcome +Social Care - Child,2554,"Care leavers in education, employment or training",Outcome +Social Care - Child,2555,Care leavers in suitable accommodation,Outcome +Social Care - Child,2556,"Child protection cases, timely review",Outcome +Social Care - Child,2557,"Child protection plan subjects per 10,000 children",Outcome +Social Care - Child,2558,"Children in need per 10,000 children",Outcome +Social Care - Child,2559,"Children on child protection plan, second time",Outcome +Social Care - Child,2560,Children subject to a child protection plan for two years or more,Outcome +Social Care - Child,2562,Duration of core assessment (days - 75th percentile),Outcome +Social Care - Child,2565,EYFSP Average Total Point Score [SPOT Child 13],Outcome +Social Care - Child,2567,"Initial child protection conferences per 10,000 children",Outcome +Social Care - Child,2568,"Looked after children per 10,000 children",Outcome +Social Care - Child,2569,Looked after children persistently absent from school,Outcome +Social Care - Child,2573,"Referrals to child social care per 10,000 children",Outcome +Social Care - Child,2576,"Section 47 enquiries per 10,000 children",Outcome +Tobacco Control,2017,Spend: Smoking and tobacco - Stop smoking services and interventions,Spend +Tobacco Control,2018,Spend: Smoking and tobacco - Wider tobacco control,Spend +Tobacco Control,92443,Smoking Prevalence in adults (18+) - current smokers (APS),Outcome +Tobacco Control,1204,Mortality rate from chronic obstructive pulmonary disease,Outcome +Tobacco Control,93085,Smoking status at time of delivery,Outcome +Tobacco Control,1203,Mortality rate from lung cancer,Outcome +Env & Reg,2143,Spend: Agriculture and fisheries services,Spend +Highways,2191,"Spend: Airports, harbours and toll facilities",Spend +Cultural,2196,Spend: Archives,Spend +Social Care - Adults,2084,Spend: Assistive equipment and technology,Spend +Planning,2153,Spend: Building control,Spend +Planning,2160,Spend: Business Support,Spend +Env & Reg,2123,"Spend: Cemetery, cremation and mortuary services",Spend +Central,2208,Spend: Central services to the public: other,Spend +Social Care - Child,2059,Spend: Children's social care: Asylum seekers,Spend +Social Care - Child,2051,Spend: Children's social care: Children looked after,Spend +Social Care - Child,2054,Spend: Children's social care: Family support services,Spend +Social Care - Child,2052,Spend: Children's social care: Other children and family services,Spend +Social Care - Child,2057,Spend: Children's social care: Safeguarding children and young people's services,Spend +Social Care - Child,2060,Spend: Children's social care: Services for young people,Spend +Social Care - Child,2048,Spend: Children's social care: Sure start children's centres/flying start and early years,Spend +Social Care - Child,2055,Spend: Children's social care: Youth justice,Spend +Child Health,2021,Spend: Childrens 0-5 services (non-prescribed),Spend +Child Health,2020,Spend: Childrens 0-5 services (prescribed),Spend +Env & Reg,2150,Spend: Climate change costs,Spend +Env & Reg,2142,Spend: Coast protection,Spend +Social Care - Adults,2087,Spend: Commissioning and service delivery,Spend +Planning,2161,Spend: Community development,Spend +Env & Reg,2138,Spend: Community safety (CCTV),Spend +Env & Reg,2136,Spend: Community safety (Crime reduction),Spend +Env & Reg,2137,Spend: Community safety (Safety services),Spend +Central,2228,Spend: Coroners' court services,Spend +Central,2214,Spend: Corporate and democratic core,Spend +Cultural,2192,Spend: Culture and heritage (excluding Archives),Spend +Education,2046,Spend: DFE s251 RO AP / PRUs,Spend +Education,2042,Spend: DFE s251 RO Early Years,Spend +Education,2043,Spend: DFE s251 RO Primary Schools,Spend +Education,2045,Spend: DFE s251 RO SEN / Special schools,Spend +Education,2044,Spend: DFE s251 RO Secondary Schools,Spend +Env & Reg,2139,Spend: Defences against flooding,Spend +Planning,2154,Spend: Development control,Spend +Education,2027,Spend: Early years,Spend +Planning,2158,Spend: Economic development,Spend +Planning,2159,Spend: Economic research,Spend +Central,2224,Spend: Emergency planning,Spend +Planning,2157,Spend: Environmental initiatives,Spend +Highways,2164,"Spend: Environmental, safety and routine maintenance",Spend +Planning,2235,Spend: Fire and rescue services,Spend +Public Health,2023,Spend: Health at work,Spend +Housing,2090,Spend: Homelessness,Spend +Housing,2113,Spend: Housing benefits administration,Spend +Housing,2091,Spend: Housing benefits: rent allowances and rent rebates - discretionary payments,Spend +Housing,2088,"Spend: Housing strategy, advice, advances, enabling, renewals and licensing",Spend +Housing,2115,Spend: Housing welfare: Supporting People,Spend +Social Care - Adults,2086,Spend: Information and early intervention,Spend +Env & Reg,2140,Spend: Land drainage and related work (excluding levy / Special levies),Spend +Env & Reg,2141,Spend: Land drainage and related work - Levy / Special levies,Spend +Social Care - Adults,2071,Spend: Learning disability support - adults (18-64),Spend +Social Care - Adults,2072,Spend: Learning disability support - older people (65+),Spend +Cultural,2207,Spend: Library service,Spend +Central,2217,Spend: Local tax collection: council tax discounts - locally funded,Spend +Central,2218,Spend: Local tax collection: council tax support administration,Spend +Central,2209,Spend: Local tax collection: other,Spend +Public Health,2025,Spend: Miscellaneous public health services - other,Spend +Central,2231,Spend: Non-distributed costs - costs of unused shares of IT facilities and other assets,Spend +Central,2230,Spend: Non-distributed costs - retirement benefits,Spend +Central,2232,Spend: Non-distributed costs - revenue expenditure on surplus assets,Spend +Cultural,2205,Spend: Open spaces,Spend +Housing,2114,Spend: Other council property - travellers' sites and non-HRA council property,Spend +Central,2229,Spend: Other court services,Spend +Education,2040,Spend: Other education and community budget,Spend +Central,2236,Spend: Other services,Spend +Housing,2116,Spend: Other welfare services,Spend +Highways,2166,Spend: Parking services,Spend +Public Health,2064,Spend: Physical support - adults (18-64),Spend +Social Care - Adults,2065,Spend: Physical support - older people (65+),Spend +Planning,2151,Spend: Planning policy,Spend +Central,2234,Spend: Police services,Spend +Education,2031,Spend: Post-16 provision,Spend +Education,2028,Spend: Primary schools,Spend +Highways,2190,Spend: Public transport: co-ordination,Spend +Highways,2186,Spend: Public transport: discretionary concessionary fares,Spend +Highways,2185,Spend: Public transport: statutory concessionary fares,Spend +Highways,2189,Spend: Public transport: support to operators,Spend +Cultural,2194,Spend: Recreation and sport,Spend +Env & Reg,2148,Spend: Recycling,Spend +Env & Reg,2134,Spend: Regulatory services: Animal and public health; infectious disease,Spend +Env & Reg,2127,Spend: Regulatory services: Environmental protection; noise and nuisance,Spend +Env & Reg,2126,Spend: Regulatory services: Food safety,Spend +Env & Reg,2129,Spend: Regulatory services: Health and safety,Spend +Env & Reg,2128,Spend: Regulatory services: Housing standards,Spend +Env & Reg,2135,Spend: Regulatory services: Licensing - Alcohol and entertainment licensing; taxi licensing,Spend +Env & Reg,2132,Spend: Regulatory services: Pest control,Spend +Env & Reg,2130,Spend: Regulatory services: Port health (excluding levies),Spend +Central,2131,Spend: Regulatory services: Port health Levies,Spend +Env & Reg,2133,Spend: Regulatory services: Public conveniences,Spend +Env & Reg,2124,Spend: Regulatory services: Trading standards,Spend +Env & Reg,2125,Spend: Regulatory services: Water safety,Spend +Education,2029,Spend: Secondary schools,Spend +Social Care - Adults,2066,Spend: Sensory support - adults (18-64),Spend +Social Care - Adults,2067,Spend: Sensory support - older people (65+),Spend +Social Care - Adults,2085,Spend: Social care activities,Spend +Social Care - Adults,2079,Spend: Social support: Asylum seeker support,Spend +Social Care - Adults,2081,Spend: Social support: Social Isolation,Spend +Social Care - Adults,2078,Spend: Social support: Substance misuse support,Spend +Social Care - Adults,2080,Spend: Social support: Support for carer,Spend +Education,2030,Spend: Special schools and alternative provision,Spend +Env & Reg,2144,Spend: Street cleansing (not chargeable to Highways),Spend +Highways,2178,Spend: Street lighting (including energy costs),Spend +Highways,2163,Spend: Structural maintenance,Spend +Social Care - Adults,2069,Spend: Support with memory and cognition - adults (18-64),Spend +Social Care - Adults,2070,Spend: Support with memory and cognition - older people (65+),Spend +Cultural,2206,Spend: Tourism,Spend +Env & Reg,2147,Spend: Trade waste,Spend +Highways,2180,Spend: Traffic management and road safety: bus lane enforcement,Spend +Highways,2179,Spend: Traffic management and road safety: congestion charging,Spend +Highways,2182,Spend: Traffic management and road safety: other,Spend +Highways,2181,Spend: Traffic management and road safety: road safety education and safe routes (including school crossing patrols),Spend +Highways,2162,"Spend: Transport planning, policy and strategy",Spend +Env & Reg,2145,Spend: Waste collection,Spend +Env & Reg,2146,Spend: Waste disposal,Spend +Env & Reg,2149,Spend: Waste minimisation,Spend +Highways,2177,Spend: Winter service,Spend +Social Care - Child,2057,Spend: Children's social care: Safeguarding children and young people's services,Spend +Child Health,2021,Spend: Childrens 0-5 services (non-prescribed),Spend +Child Health,2020,Spend: Childrens 0-5 services (prescribed),Spend +Education,2046,Spend: DFE s251 RO AP / PRUs,Spend +Education,2042,Spend: DFE s251 RO Early Years,Spend +Education,2043,Spend: DFE s251 RO Primary Schools,Spend +Education,2045,Spend: DFE s251 RO SEN / Special schools,Spend +Education,2044,Spend: DFE s251 RO Secondary Schools,Spend +Planning,2235,Spend: Fire and rescue services,Spend +Social Care - Adults,2071,Spend: Learning disability support - adults (18-64),Spend +Central,2236,Spend: Other services,Spend +Public Health,2064,Spend: Physical support - adults (18-64),Spend +Central,2234,Spend: Police services,Spend +Education,2131,Spend: Regulatory services: Port health Levies,Spend +Social Care - Adults,2066,Spend: Sensory support - adults (18-64),Spend +Social Care - Adults,2069,Spend: Support with memory and cognition - adults (18-64),Spend +Highways,2180,Spend: Traffic management and road safety: bus lane enforcement,Spend +Public Health,93763,"Alcohol-related mortality: New method. This indicator uses a new set of attributable fractions, and so differ from that originally published.",Outcome +Public Health,92527,Average number of portions of fruit consumed daily at age 15 (WAY survey),Outcome +Public Health,92528,Average number of portions of vegetables consumed daily at age 15 (WAY survey),Outcome +Public Health,93553,Deprivation score (IMD 2019),Outcome +Education,2564,EYFSP attainment gap,Outcome +Social Care - Adults,90414,Marital breakup: % of adults,Outcome +Central,92708,Resident population,Outcome +Tobacco Control,93750,Smoking attributable deaths from heart disease (new method),Outcome +Tobacco Control,93748,Smoking attributable mortality (new method),Outcome +Tobacco Control,92445,Smoking prevalence in adults in routine and manual occupations (18-64) - current smokers (APS),Outcome +Sexual Health,90742,"Syphilis diagnostic rate per 100,000",Outcome +Health Protection,40502,Under 75 mortality rate from cancer considered preventable (2016 definition),Outcome +Public Health,40402,Under 75 mortality rate from cardiovascular diseases considered preventable (2016 definition),Outcome +Public Health,40602,Under 75 mortality rate from liver disease considered preventable (2016 definition),Outcome +Public Health,40702,Under 75 mortality rate from respiratory disease considered preventable (2016 definition),Outcome