+ Reply to Thread
Results 1 to 4 of 4

Range Number decide the size

  1. #1
    Forum Contributor choy96's Avatar
    Join Date
    03-19-2010
    Location
    singapore
    MS-Off Ver
    Excel 2019
    Posts
    187

    Range Number decide the size

    A1 to C1 got 3 number, if all the number is below 10 , D1 formula will show "Small".
    If A1 to C1 number is greater than 10, D1 formula will show "Big"

    can i have the formula above.


    thanks.
    Last edited by NBVC; 04-28-2010 at 10:10 PM.

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454

    Re: Range Number decide the size

    Hi,

    How about this:

    =IF(MAX(A1:C1)>10,"Big","Small")
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  3. #3
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Range Number decide the size

    Are are several ways to interpret your question...

    Here are 2 more ways

    =IF(COUNTIF(A1:C1,"<10"),"Small","Big")

    checks that A1, B1 and C1 are all less than 10, if yes, Small, else Big.

    =IF(COUNTIF(A1:C1,"<10"),"Small",if(COUNTIF(A1:C1,">=10"),"Big","Mixed")

    checks that A1, B1 and C1 are all less than 10, if yes, Small, else if A1, B1 and C1 are all greater than or equal to 10, then Big, else it says "mixed".

    Maybe you need to be more specific to your requirements.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  4. #4
    Forum Contributor choy96's Avatar
    Join Date
    03-19-2010
    Location
    singapore
    MS-Off Ver
    Excel 2019
    Posts
    187

    Re: Range Number decide the size

    wow.... perfect , thanks. sweep and NBVC

+ 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