* Column3 Example Use column-style input with infile truncover option; options linesize=70 nodate pageno=1; data test; infile "c:/datasets/employees.txt" firstobs=3 truncover; input last $ 1-21 first $ 22-31 empid $ 32-36 jobcode $ 38-45; proc print; title 'Column3 Example. Column-style input with truncover.'; run; quit;