I want to copy a file that is saved to G:\Departments\Research\MAP\1112\MAP - 1stQ_Grades - PASS to another server whose path is \\Tse-apps-fs1\tse-app-data\District\SHARED. The name of the file is Tam Elem.xls
In windows, RMB copy, then RMB Paste in the appropriate location
Copy using SAS:
%let copycmd1 = COPY "from\dir\file.xls" "to\dir\file.xls" ;
data _null_;
option noxwait;
X ©cmd1;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.