Hi: Actually, you have to account for the full path in the data= option when you use the full filename and extension. When we create the data for the course, we put the storm_summary.sas7bdat file in the EPG1V2/data folder. So in this case, the correct path would be: proc contents data='/home/<youruserID>/EPG1V2/data/storm_summary.sas7bdat'; run; All absolute file paths on the On-Demand server must start with /home/<youruserID>/ (everybody has a different userID. Then the class folder (if you followed the instructions) of EGP1V2/ and the subfolder of data/. Finally the file name and file extension, storm_summary.sas7bdat. Later in the class, we'll show you how to use a LIBNAME statement to bypass the need to use the fully qualified path like this. We always recommend the right-click and Properties method to see the full path. Cynthia
... View more