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