in reply to Opening spreadsheet at correct column

merrymonk:

I believe you can make the spreadsheet open at column A by selecting one of the leftmost cells before closing the worksheet, something like:

$worksheet1->set_selection(0,0); # Select A1

...roboticus

Replies are listed 'Best First'.
Re^2: Opening spreadsheet at correct column
by merrymonk (Hermit) on May 10, 2010 at 15:59 UTC
    Thanks - that worked a treat!!