* SOI 2000 990 Comp.

VARIABLE LABELS
EIN "Employer identification number."
NAME "Name."
STATE "Two-letter state abbreviation."
NTEE1 "NTEE major group (A-Z)"
NTEECC "NTEECC classification"
zip5 "First 5 digits of zip code"
FIPS "2-digit State + 3-digit County FIPS code (Federal Information Processing Standard). See also U.S. Census Bureau State & County QuickFacts."
MSA_NECH "Metropolitan Statistical Area (NCCS file) (list)"
PMSA "Primary Metropolitan Statistical Area - the component areas that comprise a CMSA (76 PMSAs as of 1995). (list)"
CROW "Row Identification Number"
C010 "Average Hours Per Week"
C020 "Compensation"
C030 "Contrib.to Empl Benefit Plns/Def.Comp"
C040 "Expense Account/Other Allowances"
SCPL "S.C./Cycle/Page/L.C."
.

.
VALUE LABELS C010
"99" "99 - Hours per week unknown"
"98" "98 - Part time"
"77" "77 - Institutional trustee reported (eg: a bank)"
.
VALUE LABELS NTEE1
"P" "Human Services - Multipurpose and Other"
"" "Unknown"
"Z" "Unknown"
"Y" "Mutual/Membership Benefit Organizations, Other"
"X" "Religion Related, Spiritual Development"
"W" "Public, Society Benefit - Multipurpose and Other"
"V" "Social Science Research Institutes, Services"
"U" "Science and Technology Research Institutes, Services"
"T" "Philanthropy, Voluntarism, and Grantmaking Foundations"
"S" "Community Improvement, Capacity Building"
"R" "Civil Rights, Social Action, Advocacy"
"Q" "International, Foreign Affairs, and National Security"
"A" "Arts, Culture, and Humanities"
"O" "Youth Development"
"N" "Recreation, Sports, Leisure, Athletics"
"M" "Public Safety"
"L" "Housing, Shelter"
"K" "Food, Agriculture, and Nutrition"
"J" "Employment, Job Related"
"I" "Crime, Legal Related"
"H" "Medical Research"
"G" "Diseases, Disorders, Medical Disciplines"
"F" "Mental Health, Crisis Intervention"
"E" "Health"
"D" "Animal-Related"
"C" "Environmental Quality, Protection, and Beautification"
"B" "Education"
.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.