+ Reply to Thread
Results 1 to 5 of 5

You've entered too many arguments for this function

  1. #1
    Registered User
    Join Date
    02-06-2014
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    3

    You've entered too many arguments for this function

    From everything I've read, you should be able to enter up to 7 variables in 1 "if" statement. I'm just trying to do one with 3, but every time I do, it tells me it's too many arguments. Obviously I'm doing something wrong! Any thoughts?

    =IF(B6="NO",A6,0,IF(B6="YES",A6,A6,IF(B6="USE",A6,A6)))

  2. #2
    Forum Guru Izandol's Avatar
    Join Date
    03-29-2012
    Location
    *
    MS-Off Ver
    Excel 20(03|10|13)
    Posts
    2,581

    Re: You've entered too many arguments for this function

    There are only 3 parts to IF function:
    IF(evaluation expression, values if true, value if false)
    but you may nest IF functions. I do not understand what your formula is attempting - it appears to evaluate to =A6. May you explain in words what you want to do, please?
    • Please remember to mark threads Solved with Thread Tools link at top of page.
    • Please use code tags when posting code: [code]Place your code here[/code]
    • Please read Forum Rules

  3. #3
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: You've entered too many arguments for this function

    lets assume thats just a test to try out nesting IF
    and you want the cell to = value in a6 if it is no,yes or use and = to 0 if none of those conditions are met
    then you would construct it like this
    =IF(B6="NO",A6,IF(B6="YES",A6,IF(B6="USE",A6,0)))
    but there are shorter ways to do that
    eg

    =IF(OR(B6={"yes","no","use"}),A6,0)
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  4. #4
    Registered User
    Join Date
    02-06-2014
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: You've entered too many arguments for this function

    I'm trying to create a tax chart that can differenciate different tax rates

    Column A is a pretax amount
    Column B is to show if it is taxed normal,exempt or use tax (answered by either yes, no or use)
    Column C is the taxable amount (where I tried to enter the formula)
    Column D is the standard tax amount (column C x my standard tax rate)
    Column E is the use tax rate (column C x my use tax rate)
    Column F is the total of column C and D or E, depending on which tax rate

    Hopefully this makes sense

  5. #5
    Registered User
    Join Date
    02-06-2014
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: You've entered too many arguments for this function

    On taking another look at this, I think column C needs to be split into two columns, one for regular tax and one for use tax. So that would completely change the formula set up, but I still can't seem to make it do what I'm trying.

+ 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. [SOLVED] You've entered to many arguments for this function????????
    By STU22 in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 01-20-2014, 06:40 PM
  2. Entered to many arguments for this function
    By cuda in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-03-2014, 01:33 PM
  3. [SOLVED] [IF/AND] You've entered too many arguments for this function.
    By seaspi in forum Excel Formulas & Functions
    Replies: 15
    Last Post: 03-21-2013, 07:04 PM
  4. You've entered too many arguments for this function
    By sutharnehal in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 12-24-2012, 09:25 PM
  5. You've entered too many arguments for this function
    By leematthews in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-21-2011, 03:11 PM

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