SAS_Institute
A00-211 · Question #267
The Excel workbook REGIONS.XLSX contains the following four worksheets: EAST WEST NORTH SOUTH The following program is submitted: libname MYXLS XLSX `c:\ data\ regions.xlsx'; Which PROC PRINT step…
The correct answer is D. proc print data=MYXLS.`NORTH$'n;run. See the full explanation below for the reasoning.
Question
The Excel workbook REGIONS.XLSX contains the following four worksheets:
EAST WEST NORTH SOUTH The following program is submitted:
libname MYXLS XLSX `c:\ data\ regions.xlsx'; Which PROC PRINT step correctly displays the NORTH worksheet?
Options
- Aproc print data=MYXLS.`NORTH'e;run;
- Bproc print data=MYXLS.NORTH.XLSX;run;
- Cproc print data=MYXLS.NORTH;run;
- Dproc print data=MYXLS.`NORTH$'n;run;
How the community answered
(48 responses)- A6% (3)
- B4% (2)
- C17% (8)
- D73% (35)
Community Discussion
No community discussion yet for this question.