SAS Studio

Write and run SAS programs in your web browser
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

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

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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