Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Recalculation on hiding rows in Excel 2003

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 459
Default Recalculation on hiding rows in Excel 2003

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
does excel 2003 support more than 65k rows? Landman Excel Discussion (Misc queries) 4 October 10th 06 05:57 PM
How can I add additional rows beyond the 65,536 in excel 2003 pbhatt07 Excel Worksheet Functions 6 April 18th 06 11:20 PM
Excel 2003 - Protecting and Hiding Columns Peppermint Excel Discussion (Misc queries) 2 January 19th 06 04:06 PM
Excell VS Office Cathyandrea Excel Discussion (Misc queries) 1 September 19th 05 07:02 AM
how do I unhide Excel 2003 spreadsheet rows with usual method. Sandy Excel Discussion (Misc queries) 2 July 13th 05 09:30 PM


All times are GMT +1. The time now is 09:29 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"