I would suggest using the XLSX libname engine. It is simple and will help you begin to learn SAS syntax.
First make a libref that points to the directory that holds your SAS dataset. Then make a second libref that points to the file you want to create.
libname in '/folders/myfolders/';
libname out xlsx '/folders/myfolders/alkoot_gross.xlsx' ;
Then you can use a data step
data out.alkoot_gross;
set in.alkoot_gross;
run;
or proc copy
proc copy inlib=in outlib=out;
select alkoot_gross ;
run;
... View more