You can turn off workbook calculation then use the ontime method to calculate a specific sheet. This will mean that the other sheets will need to be calculated manually or by way of an event.
Code:Sub turnoff() 'Turn Off calculation and start call ontime routine Application.Calculation = xlCalculationManual Call DoTimer End Sub Sub DoTimer() 'Call the sheet calculation macro every one second Application.OnTime Now + TimeValue("00:00:01"), "Rep" End Sub Sub Rep() ' calculate the sheet and repeat the ontime process Sheet1.Calculate Call DoTimer End Sub


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks