+ Reply to Thread
Results 1 to 3 of 3

Excel 2007 : Help with IF AND Formula

  1. #1
    Registered User
    Join Date
    04-19-2011
    Location
    Polokwane, South Africa
    MS-Off Ver
    Excel 2007
    Posts
    2

    Help with IF AND Formula

    I need help with an IF AND formula to calculate the following in a cell
    If the value is <100.99 then return LOW
    If the value is >100.99 and <500 return MEDIUM
    If the value is >500 return HIGH

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,614

    Re: Help with IF AND Formula

    Try

    =IF(A1<101, "LOW", IF(A1>500, "HIGH", "MEDIUM"))

  3. #3
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Help with IF AND Formula

    Maybe: =LOOKUP(A1,{0,101,500},{"Low","Medium","High"})

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

+ 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