+ Reply to Thread
Results 1 to 3 of 3

Create a lookup formula with an If or Lookup function

  1. #1
    Registered User
    Join Date
    06-12-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    4

    Create a lookup formula with an If or Lookup function

    Hi,

    Looking for ONE equation that has four different criteria :

    If Cell F2 is between 1.27 and 1.645 then "80%"
    If Cell F2 is equal to or between 1.645 and 1.96 then "85%"
    If Cell F2 is equal to or between 1.96 and 2.325 then "90%"
    If Cell F2 is greater or equal to 2.325 then "95%"

    Thanks,

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Long IF Statement

    The formula look like this, but something is off with your criteria. What happen if F2 = 1.96? Does the output = 85% or 90%

    =IF(AND(F2>1.27, F2<1.645),80%,IF(AND(F2>=1.645,F2<=1.96),85%,IF(AND(F2>=1.96,F2<=2.325),90%,IF(F2>=2.325,95%,""))))

  3. #3
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Create a lookup formula with an If or Lookup function

    Or maybe a lookup table. What if the value is less than 1.27?
    Attached Files Attached Files
    HTH
    Regards, Jeff

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

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