BookmarkSubscribeRSS Feed
wcpatton
Calcite | Level 5

In 9.2, my codes worked fine.  In 9.3, I have issues getting my excel macros to execute with my SAS codes.  Has this syntax changed now?  The macro keeps trying to execute on personal.xlsb rather than waiting for the SAS output.

This was the code:

options noxwait noxsync;

data _null_;

rc=system("Start Excel");

run;

data _null_;

x=sleep(1);

run;

SOME ODS HERE

options noxwait noxsync;

data _null_;

x=sleep(5);

run;

data _null_;

file CMDS;

put '[RUN("personal.xlsb!MACRONAME")]';

run;

2 REPLIES 2
Tom
Super User Tom
Super User

I have no idea about your particular problem, but there are many messages about making sure that the your SAS version is consistent with your Excel version in terms of 32bit vs 64bit.  Perhaps the issue is that you went from 32 bit SAS 9.2 to 64 bit SAS 9.3?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1659 views
  • 0 likes
  • 2 in conversation