Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi All,
I've just had to create a monster sheet that essentially enables me to do a SUMIF over 2 criteria, however there's some 15,000 cells involved in this new sheet and it really slows the workbook down on startup and every time it re-evaluates the formulae. Is there any way that I could set just that sheet so that it doesn't re-evaluate the formulae unless I ask it to (by means of a prompt or any other method)? Thanks Jamie |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Tools/Options/Calculation tag/Check Calculation-On request only!
Regards, Stefi € ezt Ã*rta: Hi All, I've just had to create a monster sheet that essentially enables me to do a SUMIF over 2 criteria, however there's some 15,000 cells involved in this new sheet and it really slows the workbook down on startup and every time it re-evaluates the formulae. Is there any way that I could set just that sheet so that it doesn't re-evaluate the formulae unless I ask it to (by means of a prompt or any other method)? Thanks Jamie |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
is that a global setting for the entire workbook or will that just
apply to that sheet? Thanks Jamie Stefi wrote: Tools/Options/Calculation tag/Check Calculation-On request only! Regards, Stefi " ezt írta: Hi All, I've just had to create a monster sheet that essentially enables me to do a SUMIF over 2 criteria, however there's some 15,000 cells involved in this new sheet and it really slows the workbook down on startup and every time it re-evaluates the formulae. Is there any way that I could set just that sheet so that it doesn't re-evaluate the formulae unless I ask it to (by means of a prompt or any other method)? Thanks Jamie |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Unfortunately it's a global setting. You can manipulate it in the way you
request with a Workbook_SheetActivate event sub: Private Sub Workbook_SheetActivate(ByVal Sh As Object) If Sh.Name = "name_of monster_sheet" Then Application.Calculation = xlManual Else Application.Calculation = xlAutomatic End If End Sub Regards, Stefi " wrote: is that a global setting for the entire workbook or will that just apply to that sheet? Thanks Jamie Stefi wrote: Tools/Options/Calculation tag/Check Calculation-On request only! Regards, Stefi " ezt Ã*rta: Hi All, I've just had to create a monster sheet that essentially enables me to do a SUMIF over 2 criteria, however there's some 15,000 cells involved in this new sheet and it really slows the workbook down on startup and every time it re-evaluates the formulae. Is there any way that I could set just that sheet so that it doesn't re-evaluate the formulae unless I ask it to (by means of a prompt or any other method)? Thanks Jamie |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
close workbook without closing excel and stop recursive function | Excel Discussion (Misc queries) | |||
Stop Excel from stripping out leading zeros when saving as CSV | Excel Discussion (Misc queries) | |||
How to stop Excel remembering/loading macro from previously opened Workbook | Excel Discussion (Misc queries) | |||
How can I stop excel from automatically making hyperlinks | Excel Discussion (Misc queries) | |||
stop excel from shifting cells up when a query returns no data | Excel Worksheet Functions |