Hi,     I am getting the following message:  NOTE: No observations in data set PANKAJ.CAR_SALES.  NOTE: PROCEDURE PRINT used (Total process time):  real time 0.01 seconds  cpu time 0.00 seconds     This is the code i wrote:  libname Pankaj '/folders/myfolders/Pankaj';  filename carsales '/folders/myfolders/Pankaj/Car sales.csv';  run;  data Pankaj.car_sales;  infile carsales dlm=',' missover dsd;  input manufacturer: $10.  model: $10.  sales: 4.3.;      proc print data=Pankaj.car_sales (obs=5);  run;     The file is located on my desktop under myfolder/pankaj and it is named Car sales and in csv format. Please help? Also, attached is the file. Thanks. 
						
					
					... View more