BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6

Hello everyone,

I try to open a password protected excel file as the following SAS code,,,everything works but only problem will happen when I try to use macro variable denotes the password.

Suppose the password of the excel file c:\temp\book1.xls  is abcdefg.

Please look into SAS code ,I add my question there at ""s = '[open(' || quote ("c:\temp\book1.xls.") ||',,,,"abcdefg")]';""   (I want use macro variable express abcdefg will cause problem).

Thanks

Mike

options noxwait noxsync;

    x '"C:\Program Files\Microsoft Office\Office12\EXCEL"';

    data _null_;
        x=sleep(3);
    run;

    filename ExcelCmd dde 'Excel|system';

    data _null_;
      file ExcelCmd;
      length s $200;
      s = '[open(' || quote ("c:\temp\book1.xls.") ||',,,,"abcdefg")]'; /*-------------My question is here,the password is "abcdefg",but I want use a macro variable replace the real password,such as  I want use %let pw=abcdefg,and here I use &pw instead of abcdefg,but a problem will happen-----------------------*/
      put s;
    run;

3 REPLIES 3
FloydNevseta
Pyrite | Level 9

I'm not familiar with DDE, but have much experience converting code to use macro variables. Try enclosing the DDE command in double quotes instead of single quotes. The single quotes are probably preventing the resolution of the macro &pw, so the proper password does not get passed to Excel.

art297
Opal | Level 21

try it with:

      s = '[open(' || quote ("c:\temp\book1.xls.") ||",,,,""&pw."")]";

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1205 views
  • 0 likes
  • 3 in conversation