To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69513
Issue #|69513
Summary|cell overwrite behaviour does not match Excel 2003 sp2
Component|Spreadsheet
Version|OOo 2.0
Platform|PC
URL|
OS/Version|Linux
Status|UNCONFIRMED
Status whiteboard|
Keywords|
Resolution|
Issue type|DEFECT
Priority|P4
Subcomponent|code
Assigned to|spreadsheet
Reported by|esznyter
------- Additional comments from [EMAIL PROTECTED] Wed Sep 13 12:09:55 -0700
2006 -------
The perl program below creates a .xls file with one cell; first
the cell is set to '3', then it is set to an orange blank.
In Excel, a blank orange cell is displayed. In OpenOffice.org calc,
an orange cell with a '3' is displayed. I just shipped an Excel
spreadsheet that looks fine in OO, but was mostly blank when the
recipient opened it in Excel.
use Spreadsheet::WriteExcel::Big;
my $xls_fn = 'overwrite_error.xls';
my $workbook = Spreadsheet::WriteExcel::Big->new($xls_fn)
|| die "Can not create $xls_fn";
my $f = $workbook->add_format(bg_color=>'orange');
my $ws = $workbook->add_worksheet('A');
$ws->write_number(0,0, 3);
$ws->write_blank(0,0, $f);
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]