SAS_Institute
A00-211 · Question #172
The Excel workbook REGIONS.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 correct answer is D. proc print data=MYXLS.'NORTH$'n. See the full explanation below for the reasoning.
Question
The Excel workbook REGIONS.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?
Options
- Aproc print data=MYXLS.NORTH;
- Bproc print data=MYXLS.NORTH$;
- Cproc print data=MYXLS.'NORTH'e;
- Dproc print data=MYXLS.'NORTH$'n;
How the community answered
(17 responses)- A6% (1)
- B12% (2)
- C6% (1)
- D76% (13)
Community Discussion
No community discussion yet for this question.