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?
Select an option, then click Submit answer.
-
○
proc print data=MYXLS.‘NORTH’e; run;
-
○
proc print data=MYXLS.NORTH.XLSX; run;
-
○
proc print data=MYXLS.NORTH; run;
-
○
proc print data=MYXLS.‘NORTH$’n; run;