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

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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