|
|
|
date: Sat, 11 Oct 2008 04:57:30 -0700 (PDT),
group: microsoft.public.excel
back
Re: Remember Lowest Value in Cell
If you want to avoid VBA and do it with a formula, you can use the
following in G3.
=IF(D3="",100,MIN(D3,G3))
This creates a circular reference (a formula referring to itself) so
you'll need to dismiss the "help" that Excel will provide and go to
the Tools menu, choose Options, then Calculation, and check the
Iterations option.
The 100 in the formula is used to initialize the "minimum" value. You
can change it to a value that will be greater than the actual minimum
is expected to be.
Cordially,
Chip Pearson
Microsoft MVP
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
The San Diego Project Group, LLC
(email is on the web site)
USA Central Daylight Time (-5:00 GMT)
On Sat, 11 Oct 2008 04:57:30 -0700 (PDT), iamnu
wrote:
>Cell D3 contains a numeric value.
>
>As data is changed in cell D3, I want cell G3 to keep track of the
>lowest value that was entered in Cell D3.
>
>How do I do this?
>
>Thanks
date: Sat, 11 Oct 2008 13:04:09 -0500
author: Chip Pearson
|
|