BookmarkSubscribeRSS Feed
MaryR
Fluorite | Level 6

I'm using SAS 9.2

 

When using the ExcelXp tagset, when I place a '/' in the SHEET_NAME, it is replaced by a space in the XML file.  Is there a way to avoid this?

 

Sample code:

 

ods tagsets.ExcelXP path="C:\" file="my report.xml" style=Journal;

ods tagsets.ExcelXP options(sheet_name="Mostly 3/4 or Better" sheet_interval='None');

proc report data=sashelp.class headline missing nowd split='^^^';

run;

ods tagsets.ExcelXP close;

 

Thanks in advance!

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

This is a drawback in excel sheet naming convention, which is the reason why you cannot have that special character

 

There are few rules when naming worksheets.

  1. The name must be unique within a single workbook.
  2. A worksheet name cannot exceed 31 characters.
  3. You can use all alphanumeric characters but not the following special characters:
    \ , / , * , ? , : , [ , ].
  4. You can use spaces, underscores (_) and periods (.) in the name as word separators.
Thanks,
Jag
SASKiwi
PROC Star

If you are not on the latest tagset version v1.131, download it from here and check if you still get the same problem:

 

http://support.sas.com/rnd/base/ods/odsmarkup/index.html

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1241 views
  • 0 likes
  • 3 in conversation