BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Greg_Azevedo_KP
Calcite | Level 5

I’m new to using SAS a little --- doing a fairly simple data base export to MS-Excel.

It works but am unable to get the MS-Excel Tab Name as needed.

 

MS-Excel Tab Name --- SAS PROC EXPORT \ SHEET Definition

 

MS-Excel Tab Name – Wanted: ICD9 & HCC

 

I’ve tried and it seems to fails to execute.   Is there a way ?    Using SHEET to set the Tab Name.

 

#-#-#-#-#-#-#-#-#-#-#-#-#

PROC EXPORT DATA=RPTTBL_EDG01                                      

            OUTFILE="\\xxxxx\EDG.YYYY.MM.DD.xlsx"

            DBMS=EXCELCS REPLACE;                                                    

            SHEET='ICD9 ^ HCC';                        

#-#-

 

1 ACCEPTED SOLUTION

Accepted Solutions
Norman21
Lapis Lazuli | Level 10

The following works for me in SAS EG:

 

proc export data=sashelp.cars
    outfile="C:\My SAS\_examples_/cars.xlsx"
    dbms=xlsx
    replace;
    sheet="ICD9 & HCC";
run;

Can you try the above (with a different folder for the outfile)?

Norman.
SAS 9.4 (TS1M6) X64_10PRO WIN 10.0.17763 Workstation

View solution in original post

1 REPLY 1
Norman21
Lapis Lazuli | Level 10

The following works for me in SAS EG:

 

proc export data=sashelp.cars
    outfile="C:\My SAS\_examples_/cars.xlsx"
    dbms=xlsx
    replace;
    sheet="ICD9 & HCC";
run;

Can you try the above (with a different folder for the outfile)?

Norman.
SAS 9.4 (TS1M6) X64_10PRO WIN 10.0.17763 Workstation

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 579 views
  • 1 like
  • 2 in conversation