Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 252
Default How to make a formula cell dynamically display

Hi all,

There is simple formula =sum(A1:A10. If any of cell in range A1:A10 is
changed, how to make the cell which contain the formula display the change?

Clara
--
thank you so much for your help
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default How to make a formula cell dynamically display

Tools/ Options/ Calculation:
Make sure it says Automatic, not Manual.
--
David Biddulph

"clara" wrote in message
...
Hi all,

There is simple formula =sum(A1:A10. If any of cell in range A1:A10 is
changed, how to make the cell which contain the formula display the
change?

Clara
--
thank you so much for your help



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 252
Default How to make a formula cell dynamically display

Hi David,

It works well. Another questio is that if this workbook is opened by another
Excel, does the setting keep going? or How can I make the setting go with the
workbook.

Clara
--
thank you so much for your help


"David Biddulph" wrote:

Tools/ Options/ Calculation:
Make sure it says Automatic, not Manual.
--
David Biddulph

"clara" wrote in message
...
Hi all,

There is simple formula =sum(A1:A10. If any of cell in range A1:A10 is
changed, how to make the cell which contain the formula display the
change?

Clara
--
thank you so much for your help




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How to make a formula cell dynamically display

Clara

The calc mode is set for that session of Excel by the the mode from the first
workbook opened.

If you save the workbook with calc mode set to "Auto" it will open that way
unless another workbook with calc mode set to "Manual" has been opened first.

No way around it unless you want to set the calc mode in Workbook_Open code.

Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
Right-click on the Excel Icon left of the "File" on the menubar or on the Excel
Icon at left end of Title Bar if not maximized.

Select "View Code"

Paste the above into that module.


Gord Dibben MS Excel MVP

On Tue, 17 Apr 2007 14:22:02 -0700, clara
wrote:

Hi David,

It works well. Another questio is that if this workbook is opened by another
Excel, does the setting keep going? or How can I make the setting go with the
workbook.

Clara


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default How to make a formula cell dynamically display

Making the setting go with the workbook would be tougher. The issue is
that the calculation setting (e.g. manual, automatic) is an
Application property not a workbook level one. That is, it applies to
all workbooks open in an Excel tsession (and subsequent sessions) not
just a particular workbook open in a particular session. If your
comfortable with macros, you can write a short one detect and store
the current calculation state (e.g. "bCalcState =
Application.Calculation") and if it's not what you want for your
workbook, then ask the user if they'd like to change it. If you do
this, though, you should change it back to its original state when you
close the workbook. There may be a reason, after all, a particular
user likes their Excel to be in a particular calculation mode. [And
even setting it back to the state it was when you opened the workbook
would ignore/overwrite any changes the user made manually during that
Excel session. You could do a second check of its state before you
close your workbook o trap this situation or, if you assume this kind
of change is a very low probability event, you could change it back
without asking.]

HTH
/ Tyla /


On Apr 17, 2:22 pm, clara wrote:
Hi David,

It works well. Another questio is that if this workbook is opened by another
Excel, does the setting keep going? or How can I make the setting go with the
workbook.

Clara
--
thank you so much for your help

"David Biddulph" wrote:
Tools/ Options/ Calculation:
Make sure it says Automatic, not Manual.
--
David Biddulph


"clara" wrote in message
...
Hi all,


There is simple formula =sum(A1:A10. If any of cell in range A1:A10 is
changed, how to make the cell which contain the formula display the
change?


Clara
--
thank you so much for your help





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 227
Default How to make a formula cell dynamically display

To add to David's reply, if calculation is set to manual you can
recalculate at any time by pressing F9.

On Apr 17, 3:10 pm, clara wrote:
Hi all,

There is simple formula =sum(A1:A10. If any of cell in range A1:A10 is
changed, how to make the cell which contain the formula display the change?

Clara
--
thank you so much for your help



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
can you make a formula color a cell rather than display OT? Phazer Excel Discussion (Misc queries) 2 January 9th 07 12:26 AM
Function To Dynamically Display File Size MDW Excel Worksheet Functions 1 February 16th 06 09:45 PM
Dynamically-linked formula, cell reference in the string 0-0 Wai Wai ^-^ Excel Worksheet Functions 4 December 12th 05 01:36 AM
Can I make a formula in Excel to display result in same cell? Neiko Excel Worksheet Functions 2 October 1st 05 10:36 PM
How can I create and display a chart dynamically on a UserForm wi. cc Charts and Charting in Excel 1 February 14th 05 02:44 PM


All times are GMT +1. The time now is 10:34 PM.

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"