+ Reply to Thread
Results 1 to 6 of 6

Excel say "you have entered too many arguments for this function excel"

  1. #1
    Registered User
    Join Date
    05-12-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003, 2007, 2010 and 2013
    Posts
    56

    Excel say "you have entered too many arguments for this function excel"

    =IF(H2<0.25,"C1",IF(AND(H2>0.25,H2<=0.75),"C2",IF(AND(H2>0.75,H2<2.25),"C3"),IF(H2<2.25,"C4")))

    Excel say "you have entered too many arguments for this function excel"

    how can i solve this problem?

    thank you

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Excel say "you have entered too many arguments for this function excel"

    you have a parenthesis in the wrong place....
    =IF(H2<0.25,"C1",IF(AND(H2>0.25,H2<=0.75),"C2",IF(AND(H2>0.75,H2<2.25),"C3"),IF(H2<2.25,"C4")))

    =IF(H2<0.25,"C1",IF(AND(H2>0.25,H2<=0.75),"C2",IF(AND(H2>0.75,H2<2.25),"C3",IF(H2<2.25,"C4"))))

    Or (without seeing what you are trying tio do, this...
    =IF(H2<0.25,"C1",IF(H2>0.25,IF(H2<=0.75,"C2",IF(H2<2.25,"C3",IF(H2<2.25,"C4")))))
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    05-12-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003, 2007, 2010 and 2013
    Posts
    56

    Re: Excel say "you have entered too many arguments for this function excel"

    Thank you to the speed of response

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Excel say "you have entered too many arguments for this function excel"

    did that solve your question?

  5. #5
    Registered User
    Join Date
    05-12-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003, 2007, 2010 and 2013
    Posts
    56

    Re: Excel say "you have entered too many arguments for this function excel"

    =IF(ISERROR(IF(I2<=10,"S1",IF(AND(I2>10,I2<=18),"S2",IF(AND(I2>18,I2<=25),"S3",IF(I2<25,"S4"))))),"",IF(I2<=10,"S1",IF(AND(I2>10,I2<=18),"S2",IF(AND(I2>18,I2<=25),"S3",IF(I2<25,"S4")))))

    i use IF(ISERROR but given (false). why?

  6. #6
    Registered User
    Join Date
    05-12-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003, 2007, 2010 and 2013
    Posts
    56

    Re: Excel say "you have entered too many arguments for this function excel"

    Yes, Thank you to the speed of response

+ 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