* SOI 2000 990 PSR.

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"
IROW "Row Identification Number"
I241 "Unrelated Business Income Business Code - Line 93, Col A"
I242 "Unrelated Business Income Amount - Line 93, Col B"
I243 "Section 512/513/514 Exclusion Code - Line 93, Col C"
I244 "Section 512/513/514 Exclusion Amount - Line 93, Col D"
I245 "Related or Exempt Function Income - Line 93, Col E"
SCPL "S.C./Cycle/Page/L.C."
.

.
VALUE LABELS NTEE1
"N" "Recreation, Sports, Leisure, Athletics"
"" "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"
"P" "Human Services - Multipurpose and Other"
"O" "Youth Development"
"A" "Arts, Culture, and Humanities"
"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.
.