Hi: When you use the SAS OnDemand for Professionals license to access SAS on the "cloud" server, you CANNOT read from your local C: drive. That "extra" information appended to the FILENAME is the UNIX directory on the OnDemand server that is your "default" location. Anytime SAS OnDemand for Professionals reads a data file, it looks in the server default location, which is /sso/biconfig/930/Lev1/SASApp -- note how the name of the server in the screen shot is SASApp. Depending on which book you are using or which course you are taking, the FILENAME statement or INFILE statement would be different. I do not recognize the name filename ch5_154 'C:\SAS_OnDemand_for_Professionals\Raw_files\ch5_154.txt'; as belonging to one of the books that is currently loaded on the server, which could be problematic for you if your data is *NOT* loaded on the OnDemand server. What book are you using? As you can see in the second screen shot, there are a limited number of books loaded on the server. But, I wanted to show that data could be read from the server, given the right location. So, instead, my code below reads the CITYDATA.DAT file that is in the Certification Prep Guide directory, as shown in the screen shot: data work.citypop; length city $25; infile '~/bookdata/sas_cert_prep_guides/citydata.dat'; input city $ pop70 pop80; run; proc print data=work.citypop; run; OR filename cpop '~/bookdata/sas_cert_prep_guides/citydata.dat'; data work.citypop2; length city $25; infile cpop; input city $ pop70 pop80; run; proc print data=work.citypop2; run; According to the guidelines for SAS OnDemand for Professionals, you CANNOT read your personal C:\ drive files. See these links: SAS OnDemand for Professionals (sentence that starts: Note: SAS OnDemand for Professionals: Enterprise Guide does not have the capability for uploading of personal data.) or SAS OnDemand for Professionals (FAQ about the data) The only courses and books that work with the SAS OnDemand for Professionals server are the ones listed here (SAS OnDemand for Professionals [Learning Options tab]). The only exception to this is if you are using a similar license called SAS OnDemand for Academics, where your professor can load data for his/her course onto the server. If this is your usage scenario, then your instructor should give you the correct *server* location (not C: drive location) for the uploaded data. cynthia
... View more