Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a complex nonlinear regression worksheet/workbook in which the results
are written by a button-activated macro into another (summary) worksheet. It takes a while for the worksheet to be calculated and the results written, but it's even worse than the worksheet recalculation happens again after the summary data have been written... Is there a VBA procedure that would prevent the recalculation from happening unless a value in a given cell is chaned? z.entropic |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There isn't anything built into Excel to that. If you are talking about
having a cell value changed either manually or via VBA code (as opposed to the change as a result of calculated formula), you could set the calculation to manual and then use a Worksheet_Change event to do a calculation when the cell is changed. Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then Application.Calculate End If End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "z.entropic" wrote in message ... I have a complex nonlinear regression worksheet/workbook in which the results are written by a button-activated macro into another (summary) worksheet. It takes a while for the worksheet to be calculated and the results written, but it's even worse than the worksheet recalculation happens again after the summary data have been written... Is there a VBA procedure that would prevent the recalculation from happening unless a value in a given cell is chaned? z.entropic |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Prevent copy of formulas on a worksheet | Excel Discussion (Misc queries) | |||
Excel Charts do not update when workbook recalculated | Excel Discussion (Misc queries) | |||
Excel Charts do not update when Workbook recalculated | Charts and Charting in Excel | |||
Prevent Worksheet Deletions | Excel Worksheet Functions | |||
prevent saving a worksheet | Excel Discussion (Misc queries) |