* Master Failed Public Charities 07/2003.

VARIABLE LABELS
EIN "Employer identification number."
BMFYR "Year of Most Recent Listing in Business Master Files"
CURFNDCD "Foundation Code in Most Recent BMF File"
FAILPC "Suspected Failed Public Charity: FPCREAS = 1 or 2"
RULEYR "Rule Date in Most Recent BMF File"
AREDYR "Advance Rule Date in Most Recent BMF File"
CURFRCD "Filing Requirement Code in Most Recent BMF File"
FPCREAS "Reason identified as a Failed Public Charity: values 0-3"
TAXPYR "Most Recent Year a Return was Filed"
.

.
VALUE LABELS CURFNDCD
"14" "Governmental unit"
"24" "Supporting Organization 509(a)(3) Type III not functionally integrated"
"23" "Supporting Organization 509(a)(3) Type III functionally integrated"
"22" "Supporting Organization 509(a)(3) Type II"
"21" "Supporting Organization 509(a)(3) Type I"
"00" "All organizations except 501(c)(3)"
"02" "Private operating foundation exempt from paying excise taxes on investment income"
"03" "Private operating foundation (other)"
"04" "Private non-operating foundation"
"09" "Suspense"
"10" "Church"
"11" "School"
"12" "Hospital or medical research organization"
"13" "Organization operated for the benefit of a public (government owned or run) college or university"
"15" "Organization with a substantial portion of support from a governmental unit or the general public"
"16" "Organization income is <=1/3 investment or unrelated business and >1/3 donated or related to purpose"
"17" "Supporting Organization 509(a)(3) for benefit and in conjunction with organization(s) coded 10-16"
"18" "Organization organized and operated to test for public safety"
.
VALUE LABELS CURFRCD
"03" "Required to file 990 - Group Return"
"07" "Required to file 990 - Government 501 ( c) (1)"
"01" "Required to file 990 (all other) or 990EZ"
"02" "Required to file 990N (gross receipts less than $25,000)"
"06" "Not required to file - Church"
"04" "Required to file 990BL - Black Lung Trust"
"13" "Not required to file - Religious Organization"
"14" "Not required to file - State Instrumentality or Political Subdivision"
"00" "Not required to file (all other)"
.
VALUE LABELS FAILPC
"Y" "Yes"
"N" "No"
.

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