View Single Post
  #7  
Old March 23rd, 2010, 06:55 AM posted to microsoft.public.excel.newusers
FORMULA
external usenet poster
 
Posts: 9
Default highest value between rows

i forgot something.. let's say datas a

A B C D E F G
1 AA08 AA18 AB03 AA30 AB15 AC01
2



It's determining highest alpha numeric values. there are only four
characters per value as "AA01".


Value to be displayed in G1 must be the highest alpha numeric which is AC01.
Pls advise.

Thanks.


"T. Valko" wrote:

It depends on what the numeric portion of the string is.

This array formula** will work on your posted sample data.

=INDEX(A11,MATCH(TRUE,COUNTIF(A11,""&A11)=0 ,0))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

However, if this was your data:

AA100
AA08
AA07
AA30

The formula would still evaluate AA30 as being the "max" value in the range.
If you want to see how Excel evaluates this just sort the data in ascending
order and you'll get:

AA07
AA08
AA100
AA30

If you only want to evaluate the numeric portion of the string like this:

7
8
30
100

Then it get's kind of complicated!

--
Biff
Microsoft Excel MVP


"formula" wrote in message
...
hi..

Datas a

A B C D E
1 AA08 AA07 AA09 AA30
2

I want to display the highest value(AA30) in E1. Any formula for this?
Thanks.




.