in reply to Spreadsheet::ParseExcel::SaveParser and worksheet insertion

It is trying to set the margin on the worksheet (if the latest version is the same as the one you are using). Without seeing any code it's not easy to say what you should do but one of these methods may be what you want

set_margins() # Set all margins to the same value set_margins_LR() # Set left and right margins to the same value set_margins_TB() # Set top and bottom margins to the same value set_margin_left(); # Set left margin set_margin_right(); # Set right margin set_margin_top(); # Set top margin set_margin_bottom(); # Set bottom margin
See for more information.

Replies are listed 'Best First'.
Re^2: Spreadsheet::ParseExcel::SaveParser and worksheet insertion
by watt (Initiate) on Jan 28, 2008 at 17:07 UTC
    Thank you for your wisdom. It seems that, over the weekend, some cosmic rays hit the server in question and aligned the electrons such that the initialization of these variables is no-longer necessary.