+ Reply to Thread
Results 1 to 3 of 3

IF function

  1. #1
    Registered User
    Join Date
    07-02-2008
    Location
    novato
    Posts
    29

    IF function

    I'm looking to have multiple conditions on a single IF function if that is possible.

    I'll do my best to explain what it is I'm trying to accomplish.

    =IF(A10 is greater than 5 and less than or equal to 10 and Cells A11,A12, and A13 are greater than one, then "XXXXXXX"

    As always thanks again in advance for all the help!

  2. #2
    Forum Expert contaminated's Avatar
    Join Date
    05-07-2009
    Location
    Baku, Azerbaijan
    MS-Off Ver
    Excel 2013
    Posts
    1,430

    Re: Need some help with an IF function

    Try

    =IF(AND(A10>5,A10<=10,A11>1,A12>1,A13>1),"ValueIfTrue","ValueIfFalse")

    Люди, питающие благие намерения, как раз и становятся чудовищами.

    Regards, ?Born in USSR?
    Vusal M Dadashev

    Baku, Azerbaijan

  3. #3
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: IF function

    Another alternative

    =REPT("XXXXXXX",AND(CEILING(A10,5)=10,MIN(A11:A13)>1))

    if only to demo some other functions which might be of interest

+ 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