Problem Note 46616: Titles in the first sheet are setting the MERGEACROSS= value for subsequent sheets in output generated by the ExcelXP tagset
If the EXCELXP tagset is used to generate a file containing multiple worksheets and the EMBEDDED_TITLES= option is set to YES, the titles in the first sheet might set the MERGEACROSS= value for subsequent sheets.
The Full Code tab contains an example whereby the title on the first sheet spans two columns. The next sheet has more columns. The title should span all five columns, but only spans the first two.
This will be addressed in a subsequent tagset update.
Operating System and Release Information
SAS System | Base SAS | Windows 7 Enterprise 32 bit | 9.3 TS1M0 | |
Windows 7 Enterprise x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Windows 7 Home Premium 32 bit | 9.3 TS1M0 | |
Windows 7 Home Premium x64 | 9.3 TS1M0 | |
Windows 7 Professional 32 bit | 9.3 TS1M0 | |
Windows 7 Professional x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Windows 7 Ultimate 32 bit | 9.3 TS1M0 | |
Windows 7 Ultimate x64 | 9.3 TS1M0 | |
Windows Vista | 9.3 TS1M0 | |
Windows Vista for x64 | 9.3 TS1M0 | |
64-bit Enabled AIX | 9.3 TS1M0 | 9.4 TS1M1 |
64-bit Enabled HP-UX | 9.3 TS1M0 | 9.4 TS1M1 |
64-bit Enabled Solaris | 9.3 TS1M0 | 9.4 TS1M1 |
HP-UX IPF | 9.3 TS1M0 | 9.4 TS1M1 |
Linux | 9.3 TS1M0 | 9.4 TS1M1 |
Linux for x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Solaris for x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Microsoft Windows XP Professional | 9.3 TS1M0 | |
Microsoft Windows Server 2008 for x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Microsoft Windows Server 2008 R2 | 9.3 TS1M0 | 9.4 TS1M1 |
Microsoft Windows Server 2008 | 9.3 TS1M0 | |
Microsoft Windows Server 2003 for x64 | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Standard Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.3 TS1M0 | |
Microsoft® Windows® for x64 | 9.3 TS1M0 | 9.4 TS1M1 |
Z64 | 9.3 TS1M0 | 9.4 TS1M1 |
z/OS | 9.3 TS1M0 | 9.4 TS1M1 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
The sample code generates an XML file with the MERGEACROSS= value set to two for all sheets. The value should be two for the first sheet, and five for the next sheet.
ods tagsets.excelxp path="c:\temp" file="test.xml" options(embedded_titles="yes");
title1 'This is Title One';
proc print data= sashelp.class noobs;
var height weight;
run;
proc print data=sashelp.class noobs;
run;
ods tagsets.excelxp close;
Titles in the first sheet are setting the MERGEACROSS= value for subsequent sheets in output generated by the ExcelXP tagset.
Type: | Problem Note |
Priority: | medium |
Date Modified: | 2012-05-21 15:05:10 |
Date Created: | 2012-05-18 12:44:01 |