It sounds like setSheetOrder is exactly what you need. Let's say you have
sheets named the following currently in the following order:
Sheet1
Sheet2
Sheet3
You want them to be in the following order:
Sheet2
Sheet3
Sheet1
You would make the following calls:
workbook.setSheetOrder("Sheet2",0);
workbook.setSheetOrder("Sheet3",1);
workbook.setSheetOrder("Sheet1",2);
---- [EMAIL PROTECTED] wrote:
> Hi,
>
> how can I order the sheets in a workbook? I found the method setSheetOrder
> and it changes something inside the workbook but the update is not visible.
>
> Greetings from Germany
> Matthias
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]