+ Reply to Thread
Results 1 to 13 of 13

Minimum Statement (More Arguments have been specified...)

  1. #1
    Forum Contributor
    Join Date
    07-28-2009
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    99

    Minimum Statement (More Arguments have been specified...)

    Here's my Min statement

    =MIN(C21,C23,C25,C27,C29,C31,C33,C35,C37,C49,C51,C53,C55,C57,C59,C61,C63,C65,C67,C39,C41,C43,C45,C47,C69,C71,C73,C75,C77,C79)


    However i need to add a few more cells, so it looks like this:

    =MIN(C21,C23,C25,C27,C29,C31,C33,C35,C37,C49,C51,C53,C55,C57,C59,C61,C63,C65,C67,C39,C41,C43,C45,C47,C69,C71,C73,C75,C77,C79, C81, C93, C95, C97, C99, C101)

    But when I do that I get an error that says " More arguments have been specified for this function than are allowed in the current file format"


    Does anyone know how to counter this?

    And no I cant just drag the min all the way down the column, because I need certain cells, which are every other one.
    Last edited by NBVC; 08-27-2010 at 06:32 PM.

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Minimum Statement (More Arguments have been specified...)

    Here, try this:

    =MIN(IF(AND(ISBLANK(C21:C81),MOD(ROW(C22:C82),2)),0,C21:C81),C93,C95,C97,C99,C101)

    comfirmed with ctrl+shift+enter

    Of course, other part can also be made as first if there's more numbers:

    =MIN(IF(AND(ISBLANK(C21:C81),MOD(ROW(C22:C82),2)),0,C21:C81),IF(AND(ISBLANK(C91:C101),MOD(ROW(C92:C102),2)),0,C91:C101))

    comfirmed with ctrl+shift+enter

    but if there's no number that can effect your result you can extend first solution from 81 to 101 (adjust all values respectively).
    Last edited by zbor; 08-27-2010 at 04:28 PM.

  3. #3
    Registered User
    Join Date
    08-23-2010
    Location
    USA
    MS-Off Ver
    Excel 2007, Excel 2010
    Posts
    7

    Re: Minimum Statement (More Arguments have been specified...)

    How about splitting up your MIN formula into 2 formulas, using the first half and second half, then take the MIN of the 2 results. Or you could use a helper column (say, column H) such as:

    =IF(MOD(ROW(A21),2)=0,"",A21)

    copied down, then have

    =MIN(H21:H101)

    for your formula.

  4. #4
    Forum Contributor
    Join Date
    07-28-2009
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    99

    Re: Minimum Statement (More Arguments have been specified...)

    I tried what you guys suggested. The problem is it automatically picks up the RFI score which is a score 1-100, which means that will be the minimum when compared to the pricing, which I don't want. I want it to ignore the RFI scores, which is why I was using all the min statements.

    See attached. I highlighted the cell in orange which is the problem. It shouldn't be 59, it should be 880.
    Attached Files Attached Files

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

    Re: Minimum Statement (More Arguments have been specified...)

    Try:

    =MIN(IF($B$21:$B$102="Lawn",IF(E$21:E$102<>"",E$21:E$102)))


    confirmed with CTRL+SHIFT+ENTER not just ENTER and copy left or right
    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.

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Minimum Statement (More Arguments have been specified...)

    Ahhhhh.. Examples... What can't they do

  7. #7
    Forum Contributor
    Join Date
    07-28-2009
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    99

    Re: Minimum Statement (More Arguments have been specified...)

    I tried that NBVC, but it didn't work

  8. #8
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Minimum Statement (More Arguments have been specified...)

    yes it does
    Attached Files Attached Files

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

    Re: Minimum Statement (More Arguments have been specified...)

    Quote Originally Posted by Tommy1005 View Post
    I tried that NBVC, but it didn't work
    Remember that after you enter the formula in, you must hold the CTRL and SHIFT keys down and press ENTER. You will see { } brackets evelop your formula... it is a special array formula.

  10. #10
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Minimum Statement (More Arguments have been specified...)

    NBVC's approach is the one I'd recommend but just on the specifics of your original question, you can get MIN to accept more than 30 cells if you bracket some as a "union" (that counts as a single argument), e.g.

    =MIN((C21,C23,C25,C27,C29,C31,C33,C35,C37,C49,C51,C53,C55,C57,C59,C61,C63,C65,C67,C39,C41,C43,C45, C47,C69,C71,C73,C75,C77,C79,C81,C93,C95,C97,C99,C101))

    Note the extra set of brackets
    Audere est facere

  11. #11
    Forum Contributor
    Join Date
    07-28-2009
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    99

    Re: Minimum Statement (More Arguments have been specified...)

    Thanks guys for all your help, it worked!

  12. #12
    Registered User
    Join Date
    03-27-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Minimum Statement (More Arguments have been specified...)

    Can anyone help with the same problem but for the Average function? I am averaging numbers from more than 30 different worksheets but I get the error message "More arguments have been specified for this function than are allowed in the current file format". I am using Microsoft Excel 2010. Thanks!

  13. #13
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Minimum Statement (More Arguments have been specified...)

    Please can you start a new thread with your specific query, thanks

    Some more specifics would also help, e.g. which formula gave you that error?

+ 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