Hi
I have a dataset which I need to subset from already sas7bdat file for manager. When I write a code for this using Libname to subset, it gives me an error “File name”". Not found.
Below is the code I wrote:
LIBNAME new1’'Path of the directory containing the file";
DATA one; ( created a temporary folder)
Set new1.filename;
if position=“MANAGER”;
Proc print;
run;