+ Reply to Thread
Results 1 to 4 of 4

Combining if statements

  1. #1
    Registered User
    Join Date
    03-04-2010
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    2

    Combining if statements

    Hi All,
    Please help with this:
    i am trying to combine if statements to give me if sales is 102% above target it returns "Above target". if sales if between 98% to 102 % it returns "Achieved" and if sales is less than 98% than it returns "below target"

    can someone please help

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Combining if statements

    Hello SANJ,

    welcome to the forum.

    With an IF, it would look something like

    =if(A1<0.98,"Below target",if(A1<1.02,"Achieved","Above target"))

    Alternatively, you could use

    =LOOKUP(A1,{0,0.98,1.02},{"below","achieved","above"})
    Last edited by teylyn; 03-04-2010 at 09:21 PM.

  3. #3
    Registered User
    Join Date
    04-29-2008
    Location
    Tennessee
    MS-Off Ver
    2007
    Posts
    37

    Re: Combining if statements

    if target is in cell A4 and sales are in A5, then use this formula:
    =IF(A5/A4<0.98,"below target",IF(A5/A4>1.02,"Above target","Achieved"))

  4. #4
    Registered User
    Join Date
    03-04-2010
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Combining if statements

    wow. thank you so much sir

+ 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