+ Reply to Thread
Results 1 to 2 of 2

Finding values in one column based on another

Hybrid View

  1. #1
    Registered User
    Join Date
    02-22-2005
    Posts
    1

    Finding values in one column based on another

    My spreadsheet has 13 columns. I need two formulas. One where the formula for finding the maximum value in column 13 when column B's entry is XX and one where it does the same thing but only if the number in colum 1 is <= 100 (any specific number).

  2. #2
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Try the following...

    =MAX(IF(B1:B100="xx",M1:M100))

    and

    =MAX(IF((A1:A100<=100)*(B1:B100="xx"),M1:M100))

    or

    =MAX(IF((A1:A100<=C1)*(B1:B100=D1),M1:M100))

    ...where C1 contains your criterion for Column A, and D1 contains your criterion for Column B.

    Both these formulas need to be confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

    Hope this helps!

    Quote Originally Posted by RMB
    My spreadsheet has 13 columns. I need two formulas. One where the formula for finding the maximum value in column 13 when column B's entry is XX and one where it does the same thing but only if the number in colum 1 is <= 100 (any specific number).

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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