BookmarkSubscribeRSS Feed
Lucasmarques94
Calcite | Level 5

Boa tarde,

 

tenho duas tabelas e gostaria de gerar/exportar um arquivo único, em que, cada tabela ficasse em uma aba do excel.

 

Como fazer este procedimento?

4 REPLIES 4
PaigeMiller
Diamond | Level 26
ods excel file="myexcelfile.xlsx" options(sheet_name='Table 1');
proc print data=table1;
run;
ods excel options(sheet_name='Table 2');
proc print data=table2;
run;
ods excel close;
--
Paige Miller
Lucasmarques94
Calcite | Level 5
Está aparecendo o seguinte erro: ERROR insuficiente authorization to access
PaigeMiller
Diamond | Level 26

Try creating the Excel file in a folder where you do have write permission/access.

--
Paige Miller
Kurt_Bremser
Super User

Use an absolute path (starts with a drive letter or backslash in Windows, or at root in UNIX) which points to a location where you have write permission.

if you just need it temporarily (e.g. to attach the file to email), you can use the WORK location:

%let loc = %sysfunc(pathname(work));

ods excel file="&loc./myexcelfile.xlsx" options(sheet_name='Table 1');

/* rest of code */

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 932 views
  • 0 likes
  • 3 in conversation