* Master Auspice Codes.

VARIABLE LABELS
EIN "Employer identification number."
NAME "Organization name"
AUSPICE "Religious or governmental auspice, affiliation or connection"
.

.
VALUE LABELS AUSPICE
"R" "Religious Affiliation/Auspices"
"AQ" "Christian affiliation likely"
"RQ" "Religious affiliation possible"
"" "Auspices not checked"
"G" "Government Auspices, all levels"
"F" "Federal Government Auspices"
"L" "Local, Couny, or Municipal Government Auspices"
"S" "State Government Auspices"
"Q" "Quasi-Governmental Agencies - All levels"
"T" "Tribal Government Auspices"
"Z" "No affiliation/auspices"
"C" "Roman Catholic Affiliation/Auspices"
"P" "Protestant Affiliation/Auspices"
"A" "Christian Affiliation/Auspices"
"J" "Jewish Affiliation/Auspices"
"O" "Other Religious Affiliation/Auspices"
"N" "Private Nonsectarian Auspices"
"I" "Nonsectarian Membership Organizations Representing Individuals"
"M" "Nonsectarian Membership Organizations Representing Organizations"
.

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