+ Reply to Thread
Results 1 to 4 of 4

Indicators for the maximal and minimal values

  1. #1
    Hani Kashalo
    Guest

    Making its simpler

    I suggest using names for the list of nombers, this will be more easier. the formula will be as follows (I use "range" word as a name to the list):

    =IF(C4=MAX(range),"Max Value",IF(C4=MIN(range),"Min Value",""))

    BR

  2. #2
    Forum Contributor
    Join Date
    12-07-2004
    Posts
    596

    Indicators for the maximal and minimal values

    Problem:

    Creating a formula that will indicate the maximum and minimum values in List1
    by returning \"\"Max Value\"\" or \"\"Min Value\"\" in the cell next to them.

    Solution:

    Enter the following IF statement, using the MAX and MIN functions, in column B:
    =IF(A2=MAX($A$2:$A$8),\"\"Max Value\"\",IF(A2=MIN($A$2:$A$8),\"\"Min Value\"\",\"\"\"\"))

    List1____Formula
    2
    40______Max Value
    12
    4
    7
    0_______Min Value
    30

  3. #3
    Registered User
    Join Date
    08-28-2003
    Location
    Cornwall UK
    Posts
    1

    Smile Double Quotes

    Hi Rubin,

    I felt that I had to pass comment about the use of double quotes in your last tip as they will throw up an error. The web site version above, although different, still throws up an error.

    The minimal/maximal formula should be expressed thus:

    =IF(A2=MAX($A$2:$A$8),"Max Value",IF(A2=MIN($A$2:$A$8),"Min Value",""))

    Keep up the good work!

    GT
    Never too old to learn...

  4. #4
    Registered User
    Join Date
    11-29-2006
    Posts
    1

    using conditional formatting

    A variation using conditional formatting to indicate maxima and minima is also possible:

    =A2=MAX($A$2:$A$8) [condition 1]
    =A2=MIN($A$2:$A$8) [condition 2]

    DH

+ 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