Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Restrict recalculation

I want to stop some, but not all, of the cells in a workbook from
recalculating. Is this possible
--
Allizex
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Restrict recalculation

Using the VBE (Alt+F11) you can modify the properties (Press F4 if its not
already visible) of each indivudal sheet to allow/disallow calculations for
that sheet. However, you can not disable calculation on a cell by cell basis.

Due note that if your calculated sheet refers to a noncalculating sheet,
your results will not be real-time accurate.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Allizex" wrote:

I want to stop some, but not all, of the cells in a workbook from
recalculating. Is this possible
--
Allizex

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default Restrict recalculation

Hi,

You can restrict recalculation to the cell by cell level if you write vba
code. You would turn recalculation to manual first and then use a macro such
as this:

Sub myRecalculate()
Selection.Calculate
End Sub

Assign a shortcut key like Ctrl+Shift+R to this and then anytime you want to
recalculate a cell or range select it and press the shortcut key.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Allizex" wrote:

I want to stop some, but not all, of the cells in a workbook from
recalculating. Is this possible
--
Allizex

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Restrict recalculation

Luke

This was really helpful, thanks. However, it only seems to work if the
sheet is hidden. If its visible it seems to change the enable calculation
field back to true. Am I missing something?
--
Allizex


"Luke M" wrote:

Using the VBE (Alt+F11) you can modify the properties (Press F4 if its not
already visible) of each indivudal sheet to allow/disallow calculations for
that sheet. However, you can not disable calculation on a cell by cell basis.

Due note that if your calculated sheet refers to a noncalculating sheet,
your results will not be real-time accurate.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Allizex" wrote:

I want to stop some, but not all, of the cells in a workbook from
recalculating. Is this possible
--
Allizex

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
Recalculation? Mike D. Excel Discussion (Misc queries) 8 July 13th 07 04:33 AM
Recalculation A Bauer Excel Discussion (Misc queries) 1 March 7th 07 10:01 PM
recalculation shmilo Excel Discussion (Misc queries) 1 February 13th 07 02:40 PM
Recalculation workerboy Excel Worksheet Functions 3 May 15th 06 06:14 PM
Recalculation R Ormerod Excel Discussion (Misc queries) 5 March 19th 06 08:54 AM


All times are GMT +1. The time now is 11:26 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"