options ls=90 ps=55; filename foo "http://www.uvm.edu/~abh/stat295/datasets/states2.dat"; data states; infile foo; input State Population Size EnterDate; label Size = Area (sq. mi.) label EnterDate = Date of Admission to US; run; proc print data=states label; format EnterDate date9 title State Names and Facts; run;