Undergraduate FTE
Full-Time Equivalent (FTE) is the number of students the university would have if all students were attending full-time. It is calculated on course level student credit hours.
FTE for undergraduate students takes the total undergraduate student credit hours and divides it by 15 credit hours.
Graduate FTE
FTE for graduate students takes the total graduate student credit hours and divides it by 10 credit hours.
FTE at Census SQL
/*
This SQL query calculates Full-Time Equivalent (FTE) values for graduate,
undergraduate, and total students enrolled in census versions of courses.
Does not include any fte for CE - Continuing Education courses
*/
WITH CTE_graduate_fte AS
(SELECT a.term_id,
ROUND(SUM(a.attempted_credits) / 10, 2) as census_graduate_fte
FROM export.student_section_version a
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'Census'
AND a.course_level_id = 'GR'
GROUP BY a.term_id),
CTE_undergrad_fte AS
(SELECT a.term_id,
ROUND(SUM(a.attempted_credits) / 15, 2) as census_undergrad_fte
FROM export.student_section_version a
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'Census'
AND a.course_level_id = 'UG'
GROUP BY a.term_id)
SELECT b.term_desc,
COALESCE(d.census_undergrad_fte, 0) AS census_undergrad_fte,
COALESCE(c.census_graduate_fte, 0) AS census_graduate_fte,
ROUND(COALESCE(c.census_graduate_fte, 0) + COALESCE(d.census_undergrad_fte, 0), 2) AS census_total_fte
FROM export.student_section_version a
LEFT JOIN export.term b
ON a.term_id = b.term_id
LEFT JOIN CTE_graduate_fte c
ON a.term_id = c.term_id
LEFT JOIN CTE_undergrad_fte d
ON a.term_id = d.term_id
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'Census'
AND DATE_PART('year', NOW()) - b.academic_year_code :: INT <= 5 -- Current year plus last 5 years
GROUP BY b.term_desc, c.census_graduate_fte, d.census_undergrad_fte
ORDER BY b.term_desc;
FTE at End of Term SQL
/*
This SQL query calculates Full-Time Equivalent (FTE) values for graduate,
undergraduate, and total students enrolled in end of term versions of courses.
Does not include any FTE for CE - Continuing Education courses
*/
WITH CTE_graduate_fte AS
(SELECT a.term_id,
ROUND(SUM(a.attempted_credits) / 10, 2) as eot_graduate_fte
FROM export.student_section_version a
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'End of Term'
AND a.course_level_id = 'GR'
GROUP BY a.term_id),
CTE_undergrad_fte AS
(SELECT a.term_id,
ROUND(SUM(a.attempted_credits) / 15, 2) as eot_undergrad_fte
FROM export.student_section_version a
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'End of Term'
AND a.course_level_id = 'UG'
GROUP BY a.term_id)
SELECT b.term_desc,
COALESCE(d.eot_undergrad_fte, 0) AS eot_undergrad_fte,
COALESCE(c.eot_graduate_fte, 0) AS eot_graduate_fte,
ROUND(COALESCE(c.eot_graduate_fte, 0) + COALESCE(d.eot_undergrad_fte, 0), 2) AS eot_total_fte
FROM export.student_section_version a
LEFT JOIN export.term b
ON a.term_id = b.term_id
LEFT JOIN CTE_graduate_fte c
ON a.term_id = c.term_id
LEFT JOIN CTE_undergrad_fte d
ON a.term_id = d.term_id
WHERE a.is_enrolled IS TRUE
AND a.version_desc = 'End of Term'
AND DATE_PART('year', NOW()) - b.academic_year_code :: INT <= 5 -- Current year plus last 5 years
GROUP BY b.term_desc, c.eot_graduate_fte, d.eot_undergrad_fte
ORDER BY b.term_desc;
FTE is reported to USHE five times per fiscal year:
- Summer End of Term
- Fall 3rd Week Census
- Fall End of Term
- Spring 3rd Week Census
- Spring End of Term
USHE summarizes FTE by credit hour type, residency, gender, and budget.
IPEDS calculates FTE in the 12 Month Enrollment survey based on a reporting calendar from July 1, 20XX - June 20YY. Utah Tech excludes Summer academic terms and reports Spring and Fall term census data.