* SOI 1993 990EZ c3.

VARIABLE LABELS
EIN "Employer identification number."
NAME "Name."
STATE "State"
NTEE1 "NTEE major group (A-Z)"
NTEECC "NTEECC code."
NAICS "NAICS 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"
EZ15 "Schedule A Part IV Status"
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"
EZ51 "Fund balance, beginning of year"
EZ52 "Fund balance, end of year"
S001 "Compensation (a)"
S002 "Contributions to employee benefit plans (a)"
S003 "Expense account and other allowances (a)"
S011 "Contributions to employee benefit plans (d)"
S012 "Expense account and other allowances (d)"
S013 "Compensation (e)"
S200 "Membership fees received - Column A"
S205 "Gross income - Column E"
S210 "Value of services furnished by government - Column A"
S215 "Total - Column E"
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"
S004 "Compensation (b)"
S005 "Contributions to employee benefit plans (b)"
S006 "Expense account and other allowances (b)"
S007 "Compensation ( c)"
S008 "Contributions to employee benefit plans ( c)"
S009 "Expense account and other allowances ( c)"
S010 "Compensation (d)"
S014 "Contributions to employee benefit plans (e)"
S015 "Expense account and other allowances (e)"
S016 "Number of other employees paid > $30,000"
S197 "Expenses paid for legislative activities"
S198 "Gifts, grants, and contributions received - Column A"
S199 "Gifts, grants, and contributions received - Column E"
S201 "Membership fees received - Column E"
S202 "Gross receipts - Column A"
S203 "Gross receipts - Column E"
S204 "Gross income - Column A"
S206 "Net income from unrelated business activities - Column A"
S207 "Net income from unrelated business activities - Column E"
S208 "Tax revenues - Column A"
S209 "Tax revenues - Column E"
S211 "Value of services furnished by government - Column E"
S212 "Other income - Column A"
S213 "Other income - Column E"
S214 "Total - Column A"
S216 "Total (line 23) minus gross receipts - Column A"
S217 "Total (line 23) minus gross receipts - Column E"
S218 "1% of line 24"
.

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