* SOI PTV 1994.

VARIABLE LABELS
V1006 "Document number"
VROW "Row"
EIN "Employer identification number."
NAME "Name."
STATE "Two-letter state abbreviation."
NTEE1 "NTEE major group (A-Z)"
NTEECC "NTEECC code."
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)"
V001 "Compensation"
V002 "Contributions to employee benefit programs"
V003 "Expense account and other allowances"
RandNum "Random number between 0 and 1 used for creating samples"
.

.
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.
.