* Giving by Zip 1997.

VARIABLE LABELS
UKEY "Unique ID"
STATE "Two-letter state abbreviation."
AGIC "Adjusted Gross Income code - NCCS code identifies nature of change made to the record"
AGILEV "Adjusted Gross Income Level. u50= AGI under $50,000; o50= AGI over $50,000; tot= total."
AREANAME "Metropolitan Statistical Area/Primary Metropolitan Statistical Area Name"
ZIP "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_PMSA "Metropolitan Statistical Area/Primary Metropolitan Statistical Area Name (list)"
MSANAME "Metropolitan Statistical Area Name. (list)"
MSA "Metropolitan Statistical Area (NCCS file) (list)"
PMSA "Primary Metropolitan Statistical Area - the component areas that comprise a CMSA (76 PMSAs as of 1995). (list)"
AGI2 "Total adjusted gross income (AGI). This figure is taken from the IRS Form 1040."
PMSANAME "Primary Metropolitan Statistical Area Name (list)"
AGISize "Size Group Type (zipcode, <50k AGI, >50k AGI)"
CNTY_NM "County Name"
STCODE "State code: st=state level data, zip=zip code level data"
AGICONTP "Amount of contribution as a percentage of the Adjusted Gross Income."
AGIA "Average Gross Adjusted Income. This is the Average Adjusted Income for the dataset."
SchAAgi "Adjusted Gross Income from Itemized Returns."
RETURNSC "Number of Returns Code - NCCS code identifies nature of change made to the record"
SchANum2 "Total Number of Itemized Returns. "
ZIPCOL1 "Zip/geography + AGI size type"
NUMBER "Sort by state and number to order records"
TotReturns2 "Total Number of Tax Returns"
ITEMNUMP "Number of Itemized Returns as a percentage of all Returns. "
ITEMNUMC "Number of Itemized Returns Code - NCCS code identifies nature of change made to the record"
ITEMAGIC "Itemizer AGI code "
ITEMAGIA "Average Adjusted Gross Income from Itemized Returns."
CONTNUMP "Number of Returns filed with Charitable Contributions as a percentage of total number of Returns Filed."
CONTNUMC "Number of Contributions Code -Number of Contributions Code -identifies nature of change made to the record"
ContNum2 "Number of Returns Filed with Charitable Contributions."
CONTAMTC "Contributions Amount Code - NCCS code identifies nature of change made to the record"
CONTAMTA "Average amount of contributions made."
CONTAGIC "Contributer AGI code - NCCS code identifies nature of change made to the record"
CONTAGIA "Average Gross Adjusted Income from Tax Returns with Contributions."
Cont2 "Total amount of Contributions Reported. "
.

.
VALUE LABELS AGIC
"r" "r = num. removed & combined into record above or below"
"c" "c = num. includes an amt removed from record above or below"
"d" "d = num. deleted from file (fewer than 10 returns)"
.
VALUE LABELS CONTAGIC
"r" "r = num. removed & combined into record above or below"
"c" "c = num. includes an amt removed from record above or below"
"d" "d = num. deleted from file (fewer than 10 returns)"
.
VALUE LABELS CONTAMTC
"d" "d = num. deleted from file (fewer than 10 returns)"
"r" "r = num. removed & combined into record above or below"
"c" "c = num. includes an amt removed from record above or below"
.
VALUE LABELS CONTNUMC
"d" "d = num. deleted from file (fewer than 10 returns)"
"r" "r = num. removed & combined into record above or below"
"c" "c = num. includes an amt removed from record above or below"
.
VALUE LABELS ITEMNUMC
"d" "d = num. deleted from file (fewer than 10 returns)"
"r" "r = num. removed & combined into record above or below"
"c" "c = num. includes an amt removed from record above or below"
.
VALUE LABELS RETURNSC
"c" "c = num. includes an amt removed from record above or below"
"d" "d = num. deleted from file (fewer than 10 returns)"
"r" "r = num. removed & combined into record above or below"
.

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