* Form 990 Pts 3 8 1992.

VARIABLE LABELS
EIN "Employer identification number."
NAME "Name."
STATE "Two-letter state abbreviation."
NTEECC "NTEECC code."
zip5 "First 5 digits of zip code"
PART3 "Form 990 Part III program service description (bracketed p=line break)"
PART8 "Form 990 Part VIII description of income-producing activities (bracketed p =line break)"
PART3OK "Is Part III data ok?"
PART8OK "Part VIII ok?"
VERIFY "Verification code"
.

.
VALUE LABELS VERIFY
"S" "Financial fields have been verified by SOI edited return."
"T" "Current financial fields have been multiplied by 1000 because return reported in thousands."
"L" "Financial fields were multiplied by 1000 because return reported in the thousands but inspection rev"
"" "No code"
"M" "Financial fields have been verified by staff."
.

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