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

Hi,

 

I'm using the following code to create an XML based Excel file. One of the fields in the "oas_calc_RDA" dataset is 9 character field containing CUSIPs. I am assigning them a format $9. before creating file.

 

However, when I open this file in Excel, some of the CUSIPs are incorrectly interpreted as scientific notation. Is there a work-around to preserve the character format when this file is opened in Excel?

 

Thank you for your help!

Asim

 

 

ods tagsets.excelxp file="&output_dir./Metrics_&run_id..xls" style=normal;
    ods tagsets.excelxp options(sheet_name="Total");
    PROC PRINT DATA=oas_calc_RDA noobs;
    RUN;

ods tagsets.excelxp close;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

we could preserve the data format in excel file, by TAGATTR clause

 

Here is the code you could try

 

 

ods tagsets.excelxp file="&output_dir./Metrics_&run_id..xls" style=normal;
    ods tagsets.excelxp options(sheet_name="Total");
    PROC PRINT DATA=oas_calc_RDA noobs;
    var <variable names separated by space>;
    var <variable for which the format has to be preserved> / style={TAGATTR='format:text'};
    RUN;
ods tagsets.excelxp close;

 

 

Please try and let me know if it helped.

 

Thanks,

Jag

Thanks,
Jag

View solution in original post

4 REPLIES 4
Jagadishkatam
Amethyst | Level 16

we could preserve the data format in excel file, by TAGATTR clause

 

Here is the code you could try

 

 

ods tagsets.excelxp file="&output_dir./Metrics_&run_id..xls" style=normal;
    ods tagsets.excelxp options(sheet_name="Total");
    PROC PRINT DATA=oas_calc_RDA noobs;
    var <variable names separated by space>;
    var <variable for which the format has to be preserved> / style={TAGATTR='format:text'};
    RUN;
ods tagsets.excelxp close;

 

 

Please try and let me know if it helped.

 

Thanks,

Jag

Thanks,
Jag
asimraja
Fluorite | Level 6
Jagadishkatam,

Thank you for the reply! It worked. 🙂

Asim
ballardw
Super User

You may also have to use a tagattr to force the result to be considered text. I suspect that if you open your "xls" file, which is XML, in a text editor you will find that the property for that field is being set to numeric.

asimraja
Fluorite | Level 6
Balladrw,

tagattr works. Thank you for your help!
Asim

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