* State Population.

VARIABLE LABELS
STATE "Two-letter state abbreviation."
FIPS "2-digit State + 3-digit County FIPS code (Federal Information Processing Standard). See also U.S. Census Bureau State & County QuickFacts."
STATENAME "State name"
POP2006est "Population 2006 (estimated)"
POP2012est "Population 2012 (estimated)"
POP2011est "Population 2011 (estimated)"
POP2010est "Population 2010 (estimated)"
POP2009est "Population 2009 (estimated)"
POP2008est "Population 2008 (estimated)"
POP2007est "Population 2007 (estimated)"
POP2005est "Population 2005 (estimated)"
POP2004est "Population 2004 (estimated)"
POP2002est "Population 2002 (estimated)"
POP2001est "Population 2001 (estimated)"
POP2000 "Population 2000"
POP1990 "Population 1990"
POP1980 "Population 1980"
POP1970 "Population 1970"
POP1960 "Population 1960"
POP2003est "Population 2003 (estimated)"
PCTCH19601970 "Change in population, 1960-1970"
PCTCH19701980 "Change in population, 1970-1980"
PCTCH19801990 "Change in population, 1980-1990"
PCTCH19902000 "Change in population, 1990-2000"
region4 "Region (4 groups)"
Reg4_nam "Region name (4 groups)"
Reg4_num "Region number (4 groups)"
Reg_name "US Census Region abbreviation & name (9)"
Reg_nam2 "US Census region name 2 (9 groups)"
Reg_num "Region number for 9-category US Census regions"
.

.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
STATE a2
statename a25
POP1960 f15.0
POP1970 f15.0
POP1980 f15.0
POP1990 f15.0
POP2000 f15.0
POP2001est f15.0
POP2002est f15.0
POP2003est f15.0
POP2004est f15.0
POP2005est f15.0
POP2006est f15.0
POP2007est f15.0
POP2008est f15.0
POP2009EST f15.0
POP2010EST f15.0
POP2011EST f15.0
POP2012EST f15.0
POP2013EST f15.0
PCTCH19601970 f15.0
PCTCH19701980 f15.0
PCTCH19801990 f15.0
PCTCH19902000 f15.0
STATETYPE a5
Fips a2
region4 a2
reg4_nam a20
reg4_num a2
reg_num a2
reg_nam2 a30
reg_name a30
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.