ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   high and low value in a cell (https://www.excelbanter.com/excel-discussion-misc-queries/70135-high-low-value-cell.html)

Stock Help

high and low value in a cell
 
I would like to know how to show the high value and low value of a cell that
is showing the trade by trade of a stock.

Fred Smith

high and low value in a cell
 
It depends on how your data is organized. To get the minimum or maximum of a
range, you can use:

=min(a1:a100)
=max(a1:a100)

If your data is organized some other way, let us know.

--
Regards,
Fred


"Stock Help" <Stock wrote in message
...
I would like to know how to show the high value and low value of a cell that
is showing the trade by trade of a stock.




Otto Moehrbach

high and low value in a cell
 
One way:
'The low number is shown in B1, the high in C1. The changing cell is A1.
'Put 1000000 in B1 and "0" in C1 to begin
Private Sub Worksheet_Change(ByVal Target As Range)
If IsEmpty(Target) Then Exit Sub
If Target.Address(0, 0) = "A1" Then
If Target.Value < [B1].Value Then [B1].Value = Target.Value
If Target.Value [C1] Then [C1].Value = Target.Value
End If
End Sub
HTH Otto
"Stock Help" <Stock wrote in message
...
I would like to know how to show the high value and low value of a cell
that
is showing the trade by trade of a stock.





All times are GMT +1. The time now is 01:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com