Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way I can recalculate only a small part of the whole sheet
(the selected range)? This will help me reduce calcuation time on a very large and complicated worksheet. Thanks Utkarsh |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Depending on the version of excel (IIRC), there's some vba code that will
recalculate a range: Range("a1:x99").calculate But IIRC (and I may not), Charles Williams says that this is kind of dangerous. You may want to search his site for calculation tips: http://www.decisionmodels.com In fact, you may want to browse his site to see if you can improve your design. wrote: Is there a way I can recalculate only a small part of the whole sheet (the selected range)? This will help me reduce calcuation time on a very large and complicated worksheet. Thanks Utkarsh -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks a ton, Dave
|
#4
![]() |
|||
|
|||
![]() Quote:
Sub RecalcSel() For Each xCell in Selection.Cells oFormula EQUALS xCell.FormulaR1C1 xCell.value EQUALS xCell.value 'Fixes cell value and triggers cells dependent on this one to recalc too xCell.FormulaR1C1 EQUALS oFormula 'Replaces formula and recalcs it Next xCell End Sub MB |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
data validation list selected from a range | Excel Discussion (Misc queries) | |||
Data Validation range | Excel Discussion (Misc queries) | |||
delete every nth row in selected range | Excel Discussion (Misc queries) | |||
How can you change the color of the selected range? | Excel Discussion (Misc queries) | |||
Automatically clear values from a range of selected cells | Excel Discussion (Misc queries) |