原来帮助里面有的~
Using DDE to Read Data from Microsoft Excel
You can also use DDE to read data from an Excel application into SAS, as in the following example:
/* The DDE link is established using */
/* Microsoft Excel SHEET1, rows 1 */
/* through 10 and columns 1 through 3 */
filename monthly
dde 'excel|sheet1!r1c1:r10c3';
data monthly;
infile monthly;
input var1 var2 var3;
run;
proc print;
run;