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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 343 views
  • 1 like
  • 2 in conversation