Prev: Sample Size determination for a multiple comparisons to control Dunnett's test
Next: proc report - calculating %'s across
From: Ste on 4 May 2010 11:54 This should work - use getnames for the labels and datarow for the data. proc import datafile="c:\My Spreadsheet.xls" dbms=xls out=NewDataSet replace ; sheet="Sheet1"; getnames=Yes; datarow=15; run; |