* NPC Codes 2005.

VARIABLE LABELS
EIN "Employer identification number."
FisYr "Fiscal year (ending year)"
NAME "Organization name."
STATE "Two-letter state abbreviation."
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."
NPCRa "All assigned NPCs reduced to common 5-digit roots"
NPC_BEN "NPC Beneficiary codes"
ruleID "ID of rule used for assigning rule-based NPC code"
PRGID2 "Unique program ID (NCCS auto-assigned integer)"
Largest "Largest program?"
COMMONCODE "NPC Common Code"
RandNum "Random number between 0 and 1 used for creating samples"
.

.
VALUE LABELS LatestProg
"NCCS200211-B" "NCCS verification 11/2002 (confidence=B)"
"bahr1" "Matt Bahr (NCCS), carefully coded (10-2002)."
"NCCS200211-C" "NCCS autocodes, 11/2002"
.
VALUE LABELS NPC3
"NCCS200211-B" "NCCS verification 11/2002 (confidence=B)"
"bahr1" "Matt Bahr (NCCS), carefully coded (10-2002)."
"NCCS200211-C" "NCCS autocodes, 11/2002"
.
VALUE LABELS NPCc
"NCCS200211-B" "NCCS verification 11/2002 (confidence=B)"
"bahr1" "Matt Bahr (NCCS), carefully coded (10-2002)."
"NCCS200211-C" "NCCS autocodes, 11/2002"
.

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