+ Reply to Thread
Results 1 to 14 of 14

Highest Value in Row, Including Letters and Numbers

  1. #1
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Highest Value in Row, Including Letters and Numbers

    I have an Excel spreadsheet with over 400 rows of values from A (lowest Value)B,C,D,E,F,G,H,I,0,1,2,3,4,5,6,7,8,9 (Highest Value) and where current highest value changes frequently (See example). I need to know the highest value in the row. A Max Formula would be perfect but it ignores letter values which MUST be used. What is the simplest way to find the highest value in each row. Also, my skill level with Excel is just a little better than basic so please make your reply as step by step as possible.
    Current_Revision.png

  2. #2
    Forum Expert tim201110's Avatar
    Join Date
    10-23-2011
    Location
    Russia
    MS-Off Ver
    2016, 2019
    Posts
    2,357

    Re: Highest Value in Row, Including Letters and Numbers

    functions CODE and SUM'll do it

  3. #3
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Re: Highest Value in Row, Including Letters and Numbers

    I can't view PNG files on my computer, so I'll try a guess.

    With these values in A1:P1
    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    K
    L
    M
    N
    O
    P
    1
    E
    A
    O
    A
    3
    D
    N
    I
    I
    1
    E
    J
    L
    E
    N
    3

    And this list in S1:S24
    S
    1
    A
    2
    B
    3
    C
    4
    D
    5
    E
    6
    F
    7
    G
    8
    H
    9
    I
    10
    J
    11
    K
    12
    L
    13
    M
    14
    N
    15
    O
    16
    1
    17
    2
    18
    3
    19
    4
    20
    5
    21
    6
    22
    7
    23
    8
    24
    9

    This formula returns the highest ranking item:
    Please Login or Register  to view this content.
    or...using hard-coded arrays
    Please Login or Register  to view this content.
    In that example, both formulas return: 3

    Is that something you can work with?
    Last edited by Ron Coderre; 02-10-2016 at 10:30 AM.
    Ron
    Former Microsoft MVP - Excel (2006 - 2015)
    Click here to see the Forum Rules

  4. #4
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    Thank you for the help. I had looked at the CODE function but I am not sure how to work it into a formula. My alpha values in any particular row range from A thru I, then 0 thru 9. With so many alpha characters I don't have a clue how to put it all into a formula. I have tried to include a sample of the spreadsheet.
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    I will try this and let you know. I did upload (yeah me!) a sample spreadsheet. You can probably guess that I am way over my head here but I don't have hours to manually update this information daily so I have to find a way to do this. THANK YOU.

  6. #6
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,889

    Re: Highest Value in Row, Including Letters and Numbers

    Try this array formula*:
    Please Login or Register  to view this content.
    *Array formulas are activated with the keystrokes Ctrl + Shift + Enter (not just Enter).
    Let me know if you have any questions.
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  7. #7
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    As you can see by the spreadsheet, I think I am missing out on something. I do see that you have 2 parts to your formula so do I need to reference the header line (AC3 to AU3) then the row (AC5 to AU5)?
    Attached Files Attached Files
    Last edited by BettyC; 02-10-2016 at 11:42 AM.

  8. #8
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,889

    Re: Highest Value in Row, Including Letters and Numbers

    You got the #value error because the formula was activate by Enter (or pasting) only. After pasting the formula into the cell press F2 and then use the keystrokes Ctrl + Shift + Enter. Here is a copy of your file with the formula applied:
    Copy of Architectural_1.0.xls
    Let me know if you have any questions.

  9. #9
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: Highest Value in Row, Including Letters and Numbers

    try below copy paste and simply hit enter
    =LOOKUP(2,1/(AC5:AU5<>""),AC5:AU5)
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    WANT TO SAY THANKS, HIT ADD REPUTATION (*) AT THE BOTTOM LEFT CORNER OF THE POST

    More we learn about excel, more it shows us, how less we know about it.

    for chemistry
    https://www.youtube.com/c/chemistrybyshivaansh

  10. #10
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    Thank you very much for the help! Per the spreadsheet, you can see that I entered the formula and the pressed Ctrl+Shift+Enter with a result of #VALUE!. Are you able to see what I am doing wrong?
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    OMG! THAT WORKED....love, Love, LOVE you!!!! You are Awesome!

  12. #12
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,889

    Re: Highest Value in Row, Including Letters and Numbers

    Select AV5, press and release the function 2 key (F2) then press and hold the Ctrl, Shift and Enter keys at the same time.
    Let me know if you have any questions.

  13. #13
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: Highest Value in Row, Including Letters and Numbers

    @ Betty thanks for the rep.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  14. #14
    Registered User
    Join Date
    02-10-2016
    Location
    Pittsburgh, PA
    MS-Off Ver
    2010
    Posts
    7

    Re: Highest Value in Row, Including Letters and Numbers

    I tried it again and that really did work. Thank you so very much!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 13
    Last Post: 07-30-2014, 12:03 PM
  2. Get the highest value when all values consist of letters AND numbers
    By LinaVa in forum Excel Formulas & Functions
    Replies: 14
    Last Post: 02-18-2014, 10:48 AM
  3. Parsing Letters and Numbers (And Letters)
    By jontran718 in forum Excel General
    Replies: 6
    Last Post: 01-12-2012, 12:55 PM
  4. Replies: 2
    Last Post: 12-01-2010, 02:29 PM
  5. Replies: 6
    Last Post: 02-24-2010, 11:48 PM
  6. [SOLVED] COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?
    By zurafz6 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 03-06-2006, 04:00 AM
  7. Replies: 1
    Last Post: 01-09-2006, 09:30 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1