Hi:
What version of SAS are you running???? I haven't seen that "experimental" message for a while! To find our your version of SAS, put this at the end of your program:
[pre]
%put SAS Version is: sysvlong4;
[/pre]
I think that you really may need to work with Tech Support on this issue.
TAGSETS.TABLEEDITOR works by a different method than ODS TAGSETS.EXCELXP. TABLEEDITOR creates an HTML file with embedded JavaScript that will load your HTML file in Excel once the HTML file loads into the browser. Sometimes you have to click a button to initiate the load, sometimes, depending on your options, the load into Excel is automatic.
The way Excel treats long numbers is a known issue -- even if you send Excel a number as a character string, Excel uses the "general" format for the string -- which results in scientific notation. I believe that since TAGSETS.TABLEEDITOR uses HTML, that you cannot use TAGATTR to send a Microsoft format to Excel, but instead must use the HTMLSTYLE method with an mso-format, as described here:
http://www2.sas.com/proceedings/forum2008/258-2008.pdf on page 29
cynthia
... View more