* SOI 1994 990EZ Other.

VARIABLE LABELS
EIN "Employer identification number."
NAME "Name."
STATE "State"
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)"
EZ05 "Sample code"
EZ06 "Reject code"
EZ07_1 "Accounting period - year (End of year)"
EZ07_3 "Accounting period - month (Last month in year)"
EZ10 "Zip code"
EZ11 "Exemption/subsection number"
EZ12 "Part V Question 35(b)"
EZ13 "Part V Question 36"
EZ17 "Contributions, gifts, grants"
EZ18 "Program service revenue"
EZ19 "Dues and assessments"
EZ20 "Investment income"
EZ21 "Gross amount from sale of assets"
EZ22 "Cost or other basis"
EZ23 "Gain (or loss)"
EZ24 "Gross revenue of special events"
EZ25 "Direct expenses"
EZ26 "Net income"
EZ27 "Gross sales"
EZ28 "Cost of goods sold"
EZ29 "Gross profit (loss)"
EZ30 "Other revenue"
EZ31 "Total revenue"
EZ32 "Grants paid"
EZ33 "Benefits paid to members"
EZ34 "Salaries and compensation"
EZ35 "Professional fees"
EZ36 "Occupancy, rent, utilities"
EZ37 "Printing, publications"
EZ38 "Other expenses"
EZ39 "Total expenses"
EZ40 "Excess (or deficit)"
EZ41 "Fund balance, beginning of year"
EZ42 "Other changes"
EZ43 "Fund balance, end of year"
EZ44 "Cash, savings, investments"
EZ45 "Land and buildings"
EZ46 "Other assets"
EZ47 "Total assets, beginning of year"
EZ48 "Total assets, end of year"
EZ49 "Total liabilities, beginning of year"
EZ50 "Total liabilities, end of year"
NTEESOI "NTEE assigned by IRS SOI Division."
EZ51 "Fund balance, beginning of year"
EZ52 "Fund balance, end of year"
EZ209 "Initiation fees & capital contributions"
EZ210 "Gross receipts,public use of facilities"
EZ201 "Number of uncompensated officers, etc."
EZ205 "Political expenditures"
C997 "Sample count"
C998 "Population count"
WEIGHT "Weight"
EZ206 "Was Form 1120-POL filed?"
EZ400 "Status code"
C004 "Document Locator Number used by the IRS"
RandNum "Random number between 0 and 1 used for creating samples"
C1001 "Editor code"
C1005 "Return year"
EZ1006 "SCPL"
EZ1007 "Generated sample code"
.

.
VALUE LABELS EZ206
"N" "No"
"Y" "Yes"
.
VALUE LABELS NTEE1
"" "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"
"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"
"A" "Arts, Culture, and Humanities"
.

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