BookmarkSubscribeRSS Feed
channa43
Fluorite | Level 6

ods tagsets.excelxp
options(sheet_name="Business Interruption"
autofit_height='yes' frozen_headers='yes' autofilter='yes' embedded_titles='yes' );

title "2,2820 records (2010), 2,2828 records (Now)";
proc print data=buss_int label noobs;

run;

ods tagsets.ExcelXP close;
ods results;

 

when the excel output is created it truncates the Geo code field, I am trying to stop truncating this specific field

Appreciate yoyr help

Cheers

2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

It looks like the default format is too short for you (Goodness knows why SAS Institute chose best12. as default! )

This works fine if you add a format statement:

ods tagsets.excelxp file="%sysfunc(pathname(WORK))\t.xls";
ods tagsets.excelxp
options(sheet_name="Business Interruption"
autofit_height='yes' frozen_headers='yes' autofilter='yes' embedded_titles='yes' );

data BUSS_INT; 
 X=1234567890123; output;
 X=123.4567890123; output;
 format X best32.16;
run;
proc print data=BUSS_INT label noobs;
run;

ods tagsets.ExcelXP close;

 

 

 

 

channa43
Fluorite | Level 6
Thanks Chris, yes it works
Appreciate it, cheers

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

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
  • 1083 views
  • 0 likes
  • 2 in conversation