#1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Re-Calc

Is it possible to setup Excel to do a manual re-calc on only one ( or only
specific ) worksheet(s)?

I have a spreadsheet where one worksheet is a huge RNG. Another sheet holds
converted data based on the random data and a third sheet takes real data
which is input on a regular basis.

The object of the program is to do what-ifs based on the differences between
the random and real data.

The problem is that the random data does not _HAVE_ to be re-genned
everytime and the real data takes about 1 minute to enter, but then, to
carry out the exercise, I have to wait an eternity whilst the RNG sheet
re-calcs.


TIA

PITA


  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 3,440
Default Re-Calc

SHIFT+F9 calculates only the active worksheet

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel

"Jerry" wrote in message
...
Is it possible to setup Excel to do a manual re-calc on only one ( or only
specific ) worksheet(s)?

I have a spreadsheet where one worksheet is a huge RNG. Another sheet

holds
converted data based on the random data and a third sheet takes real data
which is input on a regular basis.

The object of the program is to do what-ifs based on the differences

between
the random and real data.

The problem is that the random data does not _HAVE_ to be re-genned
everytime and the real data takes about 1 minute to enter, but then, to
carry out the exercise, I have to wait an eternity whilst the RNG sheet
re-calcs.


TIA

PITA




  #3   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 634
Default Re-Calc

If you are running a macro to get your sample data you can always turn off the
calculation status for individual sheets whilst you collect it. Even if you are
entering data manually, you can still have a routine that toggles calculation
status for the other sheets, eg, assign the following to a button on the Data
Entry sheet and put in all the sheets you want to toggle:-

Sub ToggleCalc()

Dim m As String
Dim sht1 As Worksheet
Dim sht2 As Worksheet
Dim sht3 As Worksheet

Set sht1 = Sheets("Sheet abc")
Set sht2 = Sheets("Sheet def")
Set sht3 = Sheets("Sheet ghi")

sht2.EnableCalculation = Not sht1.EnableCalculation
sht3.EnableCalculation = Not sht1.EnableCalculation
sht1.EnableCalculation = Not sht1.EnableCalculation

If sht1.EnableCalculation = True Then
m = "ON"
Else: m = "OFF"
End If

MsgBox "You have turned Calculation Status <" & m & " for the following
sheets:-" _
& vbCrLf & vbCrLf & sht1.Name & vbCrLf & sht2.Name & vbCrLf & sht3.Name

End Sub

This will also give you a message as to which sheets you have toggled and what
their status is.

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------



"Jerry" wrote in message
...
Is it possible to setup Excel to do a manual re-calc on only one ( or only
specific ) worksheet(s)?

I have a spreadsheet where one worksheet is a huge RNG. Another sheet holds
converted data based on the random data and a third sheet takes real data
which is input on a regular basis.

The object of the program is to do what-ifs based on the differences between
the random and real data.

The problem is that the random data does not _HAVE_ to be re-genned
everytime and the real data takes about 1 minute to enter, but then, to
carry out the exercise, I have to wait an eternity whilst the RNG sheet
re-calcs.


TIA

PITA




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date: 08/01/2004


  #4   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Re-Calc

Here are two more suggestions:

If you want the same random numbers every time, select all of the
random values, copy, and click EditPaste Special... then select
'Values' and paste over the same cells. This will replace the
formulas with the displayed values, and there will be nothing to
calculate.

Or, you can open the Visual Basic window (Alt-F11) and select the
sheet with the random values in the project window. This gives you
access to advanced sheet properties in the properties window. Change
EnableCalculation to False, and close the Visual Basic window. If you
want to generate new random data later, go back in there and re-enable
it.




On Wed, 14 Jan 2004 21:37:16 +0200, "Jerry" wrote:

Is it possible to setup Excel to do a manual re-calc on only one ( or only
specific ) worksheet(s)?



Mike Argy
Custom Office Solutions
and Windows/UNIX applications

Please post on-topic responses to the newsgroup

To e-mail me, remove nospam from the address in the headers
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
Calc = Manual & Do Not Calc b/4 SAVE Ken Excel Discussion (Misc queries) 0 October 3rd 07 02:28 PM
calc PH NEWS Excel Worksheet Functions 6 September 22nd 06 03:01 PM
My calc key on Excel changes box to "Text" Box and doesn't calc ? jack Charts and Charting in Excel 0 August 8th 06 07:30 PM
=If - how to tell it to calc certain %'s only Crazymom999 Excel Worksheet Functions 2 April 3rd 06 10:17 PM
auto calc on, but have to edit (f2) cells to force re-calc..help! Curt Excel Worksheet Functions 3 February 13th 06 06:05 PM


All times are GMT +1. The time now is 03:25 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"