+ Reply to Thread
Results 1 to 6 of 6

Another Basic formula I should know (but Don't)

  1. #1
    Registered User
    Join Date
    03-23-2006
    Posts
    4

    Another Basic formula I should know (but Don't)

    One final problem and I’ll leave you alone….
    Excel 2000

    If (E10) is greater than 11 “full time”, IF (E10) is greater than 8 but less than 12 “Three Quarter Time” IF (E10) is greater than 5 but less than 9 “Half Time” ” IF (E10) is greater than 0-5 “Less than Half Time”

    Thanks again in advance

    John

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,721
    Try

    =IF(E10="","",LOOKUP(E10,{0,5,9,12;"Less than Half","Half","Three Quarter","Full"})&" Time")

  3. #3
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451
    Try:

    =IF(E10>11,"Full Time",IF(E10>8,"Three Quarter Time",IF(E10>5,"Half Time",IF(E10>0,"Less Than Half Time",""))))

  4. #4
    Registered User
    Join Date
    03-23-2006
    Posts
    4

    Thanks

    Works Great

  5. #5
    Difficult1
    Guest

    RE: Another Basic formula I should know (but Don't)

    You can do it one of two ways... a nested if function... or ( I think the
    easier way) a vlooup function.




    "Oskar" wrote:

    >
    > *One final problem and I’ll leave you alone….
    > Excel 2000
    >
    > If (E10) is greater than 11 “full time”, IF (E10) is greater than 8 but
    > less than 12 “Three Quarter Time” IF (E10) is greater than 5 but less
    > than 9 “Half Time” ” IF (E10) is greater than 0-5 “Less than Half
    > Time”
    >
    > Thanks again in advance
    >
    > John*
    >
    >
    > --
    > Oskar
    > ------------------------------------------------------------------------
    > Oskar's Profile: http://www.excelforum.com/member.php...o&userid=32745
    > View this thread: http://www.excelforum.com/showthread...hreadid=525830
    >
    >


  6. #6
    Sloth
    Guest

    RE: Another Basic formula I should know (but Don't)

    =CHOOSE(1+(E10>0)+(E10>5)+(E10>8)+(E10>11),"zero","Less Than Half","Half
    Time","Three Quarter Time","Full Time")

    I added the "zero" because you didn't specify what happens at all other
    times (0 and negative numbers will result in "zero").

    "Oskar" wrote:

    >
    > *One final problem and I’ll leave you alone….
    > Excel 2000
    >
    > If (E10) is greater than 11 “full time”, IF (E10) is greater than 8 but
    > less than 12 “Three Quarter Time” IF (E10) is greater than 5 but less
    > than 9 “Half Time” ” IF (E10) is greater than 0-5 “Less than Half
    > Time”
    >
    > Thanks again in advance
    >
    > John*
    >
    >
    > --
    > Oskar
    > ------------------------------------------------------------------------
    > Oskar's Profile: http://www.excelforum.com/member.php...o&userid=32745
    > View this thread: http://www.excelforum.com/showthread...hreadid=525830
    >
    >


+ 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