Online File
How to use this page
Rick Aster: Professional SAS Programming Shortcuts: Contents
DATA WORK.COMPONENT; INFILE NEW TRUNCOVER; INPUT +1 RANK F3. NAME $CHAR40. ; RUN; ***** Alternative form of INPUT statement: INPUT @2 RANK F3. @5 NAME $CHAR40. ; *****;