Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi!
I'm having the issue described in KB918621 where hiding rows in Excel 2003 causes a recalculation of the entire worksheet. Since my spreadsheet contains 1500 rows and nearly 840 subtotals, this takes close to 20 minutes... I could use the suggested workaround of disabling automatic calculation but this is a bit extreme. The only alternative I can think about is to set up macros to turn this feature on and off and link them to toolbar buttons. Can anyone think of anything better? Thanks in advance for any help you can offer. Best wishes, Andrew |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Nel post
*Cantoris* ha scritto: Hi! I'm having the issue described in KB918621 where hiding rows in Excel 2003 causes a recalculation of the entire worksheet. Since my spreadsheet contains 1500 rows and nearly 840 subtotals, this takes close to 20 minutes... I could use the suggested workaround of disabling automatic calculation but this is a bit extreme. The only alternative I can think about is to set up macros to turn this feature on and off and link them to toolbar buttons. Can anyone think of anything better? Thanks in advance for any help you can offer. Best wishes, Andrew Hi Andrew, AFAIK the only two alternatives are those you said: to turn off automatic calculation or to use a macro to turn on/off automatic calculation. As an example the macro could be something like this: Sub SwitchCalculation() With Application If .Calculation = xlCalculationAutomatic Then .Calculation = xlCalculationManual Else .Calculation = xlCalculationAutomatic End If End With End Sub -- (I'm not sure of names of menus, options and commands, because translating from the Italian version of Excel...) Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
does excel 2003 support more than 65k rows? | Excel Discussion (Misc queries) | |||
How can I add additional rows beyond the 65,536 in excel 2003 | Excel Worksheet Functions | |||
Excel 2003 - Protecting and Hiding Columns | Excel Discussion (Misc queries) | |||
Excell VS Office | Excel Discussion (Misc queries) | |||
how do I unhide Excel 2003 spreadsheet rows with usual method. | Excel Discussion (Misc queries) |