formula for returning the largest letter in a series of letters

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way of returning the largest letter in a series of cells with
letters in it for example Cell 1 = A, Cell 2 = B, Cell 3 = C, Cell 4 = D the
formula would return 'D'

Please help
 
Give this a try (tested it quickly & will work only on single characters).
Enter it as an array formula, meaning enter it by pressing Ctrl-Shift-Enter

=CHAR(MAX(CODE(A1:A4)))
 
try this ARRAY formula to account for upper and lower.
=MAX(IF(CODE(UPPER($C$12:$C$21)),MAX(CODE($C$12:$C$21))))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top