+ Reply to Thread
Results 1 to 3 of 3

triple if?

  1. #1
    Registered User
    Join Date
    10-23-2013
    Location
    Vilnius, Lithuania
    MS-Off Ver
    Excel 2007
    Posts
    1

    triple if?

    I need to put all these requirements into one cell:

    if H20>250, then average(xxx)
    if H20<250, then average(xxx)+25
    if H20 is blank, then leave blank

    I've started to put something:
    =IF(H20>250;AVERAGE(xxx));IF(H20<250;AVERAGE(xxx)+25);““)
    but it's still not what I need

  2. #2
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: triple if?

    Try

    =IF(H20="";"";IF(H20>250;AVERAGE(xxx);AVERAGE(xxx)+25))
    Or
    =IF(H20="";"";AVERAGE(xxx)+((H20<250)*25))
    Last edited by Jonmo1; 10-23-2013 at 09:29 AM.

  3. #3
    Registered User
    Join Date
    10-22-2013
    Location
    Scotland
    MS-Off Ver
    Excel 2007
    Posts
    16

    Re: triple if?

    Try:
    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need help with triple sumproduct, please
    By cmdill in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-03-2013, 08:33 PM
  2. Triple IF statement
    By JordanA in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-19-2011, 02:30 PM
  3. triple Vlookup
    By savvito in forum Excel General
    Replies: 5
    Last Post: 10-15-2009, 10:03 AM
  4. Triple if, and, or 'or' fuction??
    By doowop5000 in forum Excel General
    Replies: 4
    Last Post: 09-25-2007, 06:43 AM
  5. triple-if function help???
    By doowop5000 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-25-2007, 06:13 AM

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