Looking for Max value from the bottom of a column...

Aitch

Board Regular
Joined
Jan 27, 2019
Messages
119
Office Version
  1. 2010
Platform
  1. Windows
ABCD
21
192
73
124
15
166Target
37
08

<tbody>
</tbody>

Kinda backwards!

How do I create a formula to paste down column D, which highlights the first value over 10 in column A - but coming up from the bottom of column C

I'm trying to use LARGE and MAX using column C - but it highlights all the values above 10

How do I make sure it's only one value in the range and the first one from the bottom?

Thank you for helping!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Not sure about a formula to copy down, but you can put this formula in a single cell, then use that value as a conditional formatting rule.

Code:
=INDEX(A1:A8,MAX((A1:A8>10)*C1:C8))

This is an array formula, so Ctl+Shift+Enter.
 
Last edited:
Upvote 0
How about
=IF(LOOKUP(2,1/($A$1:$A$8>10),$A$1:$A$8)=A1,"Target","")
But if you have two or more cells containing 16, this will highlight all of them
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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