l******h 发帖数: 855 | 1 the excel workbook REGION.XLS contains the following four worksheets:
EAST
WEST
NORTH
SOUTH
The following program is submitted:
libname MYXLS 'regions.xls';
Which PROC PRINT step correctly displays the NORTH worksheet?
A proc print data= MYXLS.NORTH; run;
B proc print data = MYXLS.NORTH$; run;
C proc print data = MYXLS.'NORTH'e; run;
D proc print data = MYXLS.'NORTH$'n; run;
我没有在SAS BASE 教程上看到关于xls 的内容, 所以对于这类题目一点儿都不懂, 真
心请教如何解答 | N****n 发帖数: 1208 | 2 记下答案好了,就是这么个规定 。。。 也没啥技巧。
【在 l******h 的大作中提到】 : the excel workbook REGION.XLS contains the following four worksheets: : EAST : WEST : NORTH : SOUTH : The following program is submitted: : libname MYXLS 'regions.xls'; : Which PROC PRINT step correctly displays the NORTH worksheet? : A proc print data= MYXLS.NORTH; run; : B proc print data = MYXLS.NORTH$; run;
|
|