BookmarkSubscribeRSS Feed
Richardvan_tHoff
Obsidian | Level 7

I use proc export in SAS EG (9.3 windows server side) to create a xls file.

The strange thing is if I use a sheet name that starts with a number, the first number is replaced with _.

Why is the first number replaced with a _.

DATA work.test;

  a=1;

  b=2;

  c=3;

  output;

  a=3;

  b=2;

  c=1;

RUN;

  PROC EXPORT DATA=work.test

    OUTFILE="test.xls"

    DBMS=XLS

    REPLACE;

    SHEET="123";

  RUN;

2 REPLIES 2
jakarman
Barite | Level 11

There are several naming conventions within this game.

A sheetname can also be a SAS-table name. SAS table-names  must start with a letter or an underscore.
Using that kind of information a table within SAS is a defined structure. That is messing in Excel, but you have range-names.     
SAS/ACCESS(R) 9.3 Interface to PC Files: Reference

14475 - PROC EXPORT to Excel inserts leading underscore in Worksheet name

---->-- ja karman --<-----
data_null__
Jade | Level 19

If you can change to XLSX you can create the 123 sheet name.  You will also have a named-range called _23. 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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