+ Reply to Thread
Results 1 to 3 of 3

Nested IF(AND Formula Error Message

  1. #1
    Registered User
    Join Date
    01-27-2010
    Location
    Dallas, TX
    MS-Off Ver
    Excel 2003
    Posts
    2

    Nested IF(AND Formula Error Message

    I am entering the following Nested IF(AND statement into a cell and getting a message stating "You've entered too many arguments for this function." Any idea on what formula I can use to get the needed information into this cell based on the fact that there are different inputs that can be entered into the related cell that will trigger the needed respons in the working cell?

    =IF(AND(K1051="Down",L1051<2),"Yes","",IF(AND(K1051="Partially Down",L1051<2),"Yes",""))

    Thank you in advance and have a great day!

    Wes Mitchell
    Last edited by NBVC; 01-27-2010 at 10:17 PM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Nested IF(AND Formula Error Message

    You don't need the middle "" part...

    =IF(AND(K1051="Down",L1051<2),"Yes",IF(AND(K1051="Partially Down",L1051<2),"Yes",""))

    or since both have same results....

    =IF(OR(AND(K1051="Down",L1051<2),AND(K1051="Partially Down",L1051<2)),"Yes","")

    or

    =IF(AND(ISNUMBER(SEARCH("Down",K1052)),L1052<2),"Yes","")

    or

    =IF(AND(RIGHT(K1052,4)="Down",L1052<2),"Yes","")
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    01-27-2010
    Location
    Dallas, TX
    MS-Off Ver
    Excel 2003
    Posts
    2

    Thumbs up Re: Nested IF(AND Formula Error Message

    NBVC,

    Thank you for the assistance with this! After inputting your formula and making a few small changes (that I had wrong in the formula from the start) I was able to get the result that I was looking for. This was a big help and has kept me from banging my head against the wall.

    Thanks again and have a great day!

    Wes Mitchell

+ 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