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;
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.
try it with:
s = '[open(' || quote ("c:\temp\book1.xls.") ||",,,,""&pw."")]";
Thank you Art,this works !
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.