Hello,
Welcome to SAS Community!
Import in SAS Studio will show you the proc import procedure to read the data, instead of PROC IMPORT learn to read the data using infile in datastep. You will have more control over the data by this way and also you can use the filters that you wish.
For example:
data cars;
infile '/user/myfiles' delimiter=',' missover firstobs=2 dsd lrecl=32767;
input Name $15. Sex $1. Age 8. Weight 8. Height 8.;
if Age>13;
run;
Did you learn about LIBNAME statement? When you have the datasets located in a physical path then you need to assign a libname to reference those datasets in SAS.
For example, if you have the cars dataset (cars.sas7bdat) physically located in '/user/mydatasets' folder then the libname for this will be:
Libname mylib '/user/mydatasets';
Now, you can access the dataset by referencing the libname.
proc print data=mylib.cars;
run;
Thanks,
Suryakiran