Two highest values in column?

Mike Slattery

Board Regular
Joined
Dec 11, 2004
Messages
101
I have tried to utilize the following formula but it is returning zeros?

=COUNTIF(CH3,(RANK(CH3,CH3:CH62,0)<3))

I just need to graph the two highest values in a column of stock prices to produce a resistance line.

Thanks for your assistance,

Michael
 
Last edited:

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Also, if there are duplicate values, do you want to only consider unique values as the top 2 or the duplicate values as the top 2?

In other words, if you had the following values: 5,5,4,3,2

Do you consider the two highest values to be 5 & 5 or 5 & 4?
 
Upvote 0
Thank you both! It does not matter if there are duplicate values and "Large" worked very well for the resistance trend line. Thank you for that. It does not work for the support line where I need to determine the two smallest values in the column representing the Low of the day, for the range of days for that stock. I have tried "SMALL", but there are a lot of zeros in this column making that solution unworkable. I need to select the second lowest value from the column that is not zero and then (in another formula) select all cells that have a value <= that value. Part of my problem here is maintaining the horizontal positions of the occurrence of these highs or Lows with there dates, so that they will plot correctly in the chart.

Thanks for you assistance,

Michael
 
Last edited:
Upvote 0
Thank you both! It does not matter if there are duplicate values and "Large" worked very well for the resistance trend line. Thank you for that. It does not work for the support line where I need to determine the two smallest values in the column representing the Low of the day, for the range of days for that stock. I have tried "SMALL", but there are a lot of zeros in this column making that solution unworkable. I need to select the second lowest value from the column that is not zero and then (in another formula) select all cells that have a value <= that value. Part of my problem here is maintaining the horizontal positions of the occurrence of these highs or Lows with there dates, so that they will plot correctly in the chart.

Thanks for you assistance,

Michael
You can beat the zeroes problem with an array formula like this. Say you want the two smallest non-zero values in A5:A14. then:

=SMALL(IF(A5:A14>0,A5:A14),1) returns the smallest value

and =SMALL(IF(A5:A14>0,A5:A14),2) the second smallest

NOTE: the formulas must be confirmed by pressing ctrl+shift+enter not just enter. You will know if you have done that correctly by the appearance (in the formula bar) of curly braces around the entire formula.

You could replace the 1 in the first formula with Row(A1) if you want to drag it down to get the second smallest in the cell immediately beneath the one that returns the smallest.
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,926
Members
449,479
Latest member
nana abanyin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top