* Sample SAS Program "readex.sas"; /* Reading an external file */ /* For example, reading "data1.txt" located in '[drive]:\[your_folder\]' */ /* Using list input format */ /* Numeric and character data */ /* Print data */ options ls=80 nodate; data temp; infile '[drive]:\[your_folder]\data1.txt'; input name $ sex $ age height weight; run; proc print data=temp; title; run;