* NTEE Codes.

VARIABLE LABELS
CODE "Major Code"
TERM_NAME "Term name"
KEYWORDS "Keywords"
DEFINITION "Definition"
SEE_ALSO "See also"
Examples "Examples"
SCOPE_NOTE "Scope Notes"
changeDate "Date record changed or created"
notes "User notes"
NAICS "North American Industrial Classification System"
NAICS_pre2009 "North American Industrial Classification System (previous version)"
NAICS3_pre2009 "NAICS - 1st 3 digits (previous version)"
NaicsName "Name of NAICS code"
MAJGRP "Major group (1st character of NTEE code)"
MAJGRPNUM "Major group number (use for sorting)"
IrsSubsection "Corresponding IRS subsection code (used for only a small number of NTEE codes). For example, most (but not all) industry associations in the S3s or S4s will be exempt as 501(c)(6) trade associations."
NteeXP "Corresponding NTEE-XP code -- a slightly more detailed coding system used prior to late 1990s."
RandNum "Random number between 0 and 1 used for creating samples"
.

.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
CODE a3
TERM_NAME a250
displayName a255
MAJGRP a60
MAJGRPNUM a2
DEFINITION a65535
KEYWORDS a65535
SEE_ALSO a65535
SCOPE_NOTE a65535
randnum f15.0
NAICS a11
NAICS_pre2009 a11
NAICS3_pre2009 a6
notes a65535
changeDate f15.0
Examples a65535
NaicsName a80
NteeXP a60
IrsSubsection a10
OrgCount f15.0
CP_group a25
KeyWordsForSearch a65535
SubjectCluster a40
PovertyCluster f15.0
NPC a100
CommunityNtee f15.0
platform a255
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.