#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Max Cell Value

Looking for a function or macro that captures and retains the maximum value
of a fluctuating real number in a cell
--
Saskatoon Jerry
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default Max Cell Value

One way:

Choose Tools/Options/Calculation and check the Iteration checkbox.

to monitor cell A1 in cell B1, enter this in B1:

=IF(A1B1, A1, B1)



In article ,
Saskatoon Jerry wrote:

Looking for a function or macro that captures and retains the maximum value
of a fluctuating real number in a cell

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Max Cell Value

Thank you for your assistance. I assume that checking the 'Iteration' check
box will have no noticeable effect on the operation of the workbook.

Jerry

--
Saskatoon Jerry


"JE McGimpsey" wrote:

One way:

Choose Tools/Options/Calculation and check the Iteration checkbox.

to monitor cell A1 in cell B1, enter this in B1:

=IF(A1B1, A1, B1)



In article ,
Saskatoon Jerry wrote:

Looking for a function or macro that captures and retains the maximum value
of a fluctuating real number in a cell


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default Max Cell Value

Can't guarantee, but if you don't have any other circular references
you're probably safe.

See the "Change the number of times Microsoft Excel calculates, or
iterates, a formula" in XL Help.

In article ,
Saskatoon Jerry wrote:

Thank you for your assistance. I assume that checking the 'Iteration' check
box will have no noticeable effect on the operation of the workbook.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Max Cell Value



"JE McGimpsey" wrote:

One way:

Choose Tools/Options/Calculation and check the Iteration checkbox.

to monitor cell A1 in cell B1, enter this in B1:

=IF(A1B1, A1, B1)



In article ,
Saskatoon Jerry wrote:

Looking for a function or macro that captures and retains the maximum value
of a fluctuating real number in a cell


how would you capture the MINUMUM of a fluctuating real number in another
cell using the formula you give above.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Max Cell Value

Reverse the operator and add an additional test for blank. Otherwise, if A1
is blank (empty) then B1 will return 0. If you're dealing with positive
numbers then you'll never get a min value that's less than the empty cell
value of 0.

=IF(A1="","",IF(A1<B1, A1, B1))

--
Biff
Microsoft Excel MVP


"vshak" wrote in message
...


"JE McGimpsey" wrote:

One way:

Choose Tools/Options/Calculation and check the Iteration checkbox.

to monitor cell A1 in cell B1, enter this in B1:

=IF(A1B1, A1, B1)



In article ,
Saskatoon Jerry wrote:

Looking for a function or macro that captures and retains the maximum
value
of a fluctuating real number in a cell


how would you capture the MINUMUM of a fluctuating real number in another
cell using the formula you give above.



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
Inputting cell value from source cell based on value in adjacent cell. michaelberrier Excel Discussion (Misc queries) 3 December 9th 06 09:16 PM
cell data not validated if navigating cell to cell with mouse LoveThatMouse Excel Worksheet Functions 6 May 21st 06 09:03 PM
How to create/run "cell A equals Cell B put Cell C info in Cell D abmb161 Excel Discussion (Misc queries) 5 January 26th 06 06:36 PM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 1 February 11th 05 06:36 AM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 0 February 11th 05 05:35 AM


All times are GMT +1. The time now is 04:28 PM.

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"