SAS_Institute
A00-211 · Question #243
The Excel workbook REGIONS.XLSX contains the following four worksheets: EAST WEST NORTH SOUTH The following program is submitted: libname MYXLS pcfiles path='c:\regions.xlsx'; Which PROC PRINT step…
The correct answer is B. 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 pcfiles path='c:\regions.xlsx'; Which PROC PRINT step correctly displays the NORTH worksheet?
Options
- Aproc print data=MYXLS.NORTH.XLS;run;
- Bproc print data=MYXLS.'NORTH$'n;run;
- Cproc print data=MYXLS.NORTH$;run;
- Dproc print data=MYXLS.'NORTH'e;run;
How the community answered
(60 responses)- A3% (2)
- B72% (43)
- C8% (5)
- D17% (10)
Community Discussion
No community discussion yet for this question.