Hey,
when I'm using this syntax:
ods rtf file='\\User\SAS\Analysis';
proc print;
run;
ods rtf close;
I get the error:
error: insufficient authority for access to /opt/sasinside/SASConfig/Lev1/SASApp/\\User\SAS\Analysis.rtf.
How can I solve this problem? I am using SAS Studio with mac.
Thanx for your support!
Caro
You are using University Edition. ALWAYS(!) use the shared folder to address files there:
ods rtf file='/folders/myfolders/Analysis.rtf';
You are using University Edition. ALWAYS(!) use the shared folder to address files there:
ods rtf file='/folders/myfolders/Analysis.rtf';
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.