Highest alphanumeric

  • Thread starter Thread starter B. Liggett
  • Start date Start date
B

B. Liggett

Is there a function/formula that will return the highest sort value from a
list of randomly ordered alphanumeric data? Example: (single column data)

Alpha09-199
Alpha10-001
Alpha10-037
Alpha10-002

"Alpha10-037" would sort to the highest value if sorted. I want a function
or formula that will return that value without actually sorting. Both MAX()
and MAXA() return 0. I would prefer not to split the column. Anyone have
any ideas? Thanks
 
Hi B. Liggett,

Assuming your data is in range A1:A4:

=LOOKUP("zz",A1:A4,A1:A4)

Hope this helps
 
=LOOKUP("zz",A1:A4,A1:A4)

That will only work (reliably) if the data is sorted in ascending order.

You don't need to repeat the range:

=LOOKUP("zz",A1:A4)
 
Back
Top