It's literally the code I wrote. You have to fill in the path and replace your data statement.
@gee21 wrote:
Hi Rezza;
sorry not really familiar with program. Did I just need to add the libname as below .
libname NWK;
data NWK AUTOFILL_SERIAL;
set NWK.ALL2019;
do no=RANGE_START to RANGE_END;
output;
end;
run;
Still error , actually how the program should look like.
tks
gee
Test this:
libname nwk 'path to folder';
data nwk.demo;
set sashelp.class;
run;
... View more