I imported the EXCEL file, but my code is not working:
PROC IMPORT DATAFILE = 'C:\Users\Tasha\Desktop\SASGraphs\diving.xlsx' DBMS = XLSX OUT = scores;
RUN;
PROC PRINT DATA = scores;
TITLE 'SAS Data Set Read From Excel File for Diving';
RUN;
PROC REPORT DATA = diving.xlsx NOWINDOWS;
COLUMN Name,(Score1 Score2), MEAN;
COLUMN Name, (MIN MAX) (Score1 Score2);
DEFINE Name/GROUP;
TITLE 'The overall minimum, maximum, and mean of Score1 and Score2';
RUN;
What is wrong with the code?