BookmarkSubscribeRSS Feed
tasha89tp
Calcite | Level 5

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? 

1 REPLY 1
ballardw
Super User

It looks like the file you input went to  OUT = scores so reference it as SCORES if the code worked.

Your Proc Repot has data=diving.xlsx which would say to look at LIBRARY named "diving" and a dataset name "xlsx".

If you want to use the set that you import then use DATA=SCORES.

 

Do you get any errors? Show the results from the log;

Unexpected output the output and the desired output.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1236 views
  • 0 likes
  • 2 in conversation