+ Reply to Thread
Results 1 to 9 of 9

Multiple if statement to return single value based on numerous ranges

  1. #1
    Forum Contributor
    Join Date
    06-13-2012
    Location
    ND
    MS-Off Ver
    Excel 2010
    Posts
    152

    Multiple if statement to return single value based on numerous ranges

    I have tried to find help on the internet and through this forum, but can't seen to find a multiple if statement for ranges. Maybe, I am using incorrect terminology. Can someone help me or link me to a similar formula.

    I have a column that has a number in it and want column V to return the values underlined below

    I need a formula to return the values of:

    1-30 range: (U2>0,U2<31)
    31-60 range: (U2>30,U2<61)
    61-89 range: (U2>60, U2<90)
    90+ range: (U2>89)

  2. #2
    Registered User
    Join Date
    06-20-2013
    Location
    Northern CA
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Multiple if statement to return single value based on numerous ranges

    Does this help:
    =IF(AND(M7>=1,M7<=30),"1-30",False). M7 = the input value to check, the formula is any other cell.
    You can replace False in the formula with a nested if; i.e.
    =IF(AND(M7>=1,M7<=30),"1-30",IF(AND(M7>=31,M7<=60),"1-60",FALSE))
    and so on. It really depends on what you want your results to look like. Replace "1-30" with whatever value you would like returned, if the criteria are met. Let me know if you have additional info. If this resolves your issue, please label your thread "Resolved". Thx, Tankstir

  3. #3
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Multiple if statement to return single value based on numerous ranges

    Use VLookup for that.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  4. #4
    Valued Forum Contributor Neil_'s Avatar
    Join Date
    04-19-2013
    Location
    Yorkshire
    MS-Off Ver
    Office 365 Enterprise E3 2013 / 2016
    Posts
    479

    Re: Multiple if statement to return single value based on numerous ranges

    =CHOOSE(MATCH(U2,{0,30,60,90},1),"1-30 Range","31-60 Range","61-89 Range","90+ Range")
    Frob first, tweak later

  5. #5
    Registered User
    Join Date
    06-20-2013
    Location
    Northern CA
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Multiple if statement to return single value based on numerous ranges

    I would use Neil's! good one. I'll use it.

  6. #6
    Forum Contributor
    Join Date
    06-13-2012
    Location
    ND
    MS-Off Ver
    Excel 2010
    Posts
    152

    Re: Multiple if statement to return single value based on numerous ranges

    =IF(U2="","",(CHOOSE(MATCH(U2,{0,30,60,90},1),"1-30 Range","31-60 Range","61-89 Range","90+ Range")))

    This is what I have so far. Can we add a -# to return At HRC? Thanks

    Just curious about another formula. I was looking at using =Lookup(A1,{0,10.01,12.51,15.01},{5%,7%,9%,10%}). Would this have worked too?

  7. #7
    Forum Contributor
    Join Date
    06-13-2012
    Location
    ND
    MS-Off Ver
    Excel 2010
    Posts
    152

    Re: Multiple if statement to return single value based on numerous ranges

    =IF(U2="","",(CHOOSE(MATCH(U2,{-1000,0,30,60,90},1),"At HRC","1-30 Range","31-60 Range","61-89 Range","90+ Range")))

    I believe this should do the trick. Thank you

  8. #8
    Registered User
    Join Date
    06-20-2013
    Location
    Northern CA
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Multiple if statement to return single value based on numerous ranges

    RE: your lookup, yes it works too. However, replace 5% with .05, etc. Please mark the this Post as "Resolved".

  9. #9
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Multiple if statement to return single value based on numerous ranges

    Try

    =LOOKUP(U2,{0,31,61,91},{"1-30 Range","31-60 Range","61-89 Range","90+ Range"})
    Life's a spreadsheet, Excel!
    Say thanks, Click *

+ 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