BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Krueger
Pyrite | Level 9

Hello all I'm running the following code:

 

%sysexec( copy "\\uncpath\file.xlsm"
               "\\uncpath\file.xlsx" ) ;

Proc export data = want
	outfile = "\\uncpath\file.xlsx";
	Dbms = Xlsx replace ; 
	sheet='sheet 1';
run ; 
%sysexec( copy "\\uncpath\file.xlsm"
               "\\uncpath\file.xlsx" ) ;

The above works fine, but I do get a prompt for each %sysexec() command I run. 

image.png

 

Is there a way to hide this cmd.exe window? It copies my .xlsx sheet to my .xlsm sheet just fine but I'm trying to automate this to run on it's own and currently I have to close out of this window each time. I haven't been very successful in finding a way to prevent this thus far. Any help would be appreciated.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
options noxwait noxsync;

It's one of those, can't remember which does what though.

View solution in original post

4 REPLIES 4
Reeza
Super User
options noxwait noxsync;

It's one of those, can't remember which does what though.
Krueger
Pyrite | Level 9
Noxsync took care of the cmd.exe prompt and the windows prompt that shows up. FCOPY for some reason corrupted both of my files. Maybe there was something else to it though?

Thanks
Reeza
Super User
You could also use FCOPY to avoid the issue and have the code be system agnostic.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1639 views
  • 2 likes
  • 2 in conversation