+ Reply to Thread
Results 1 to 5 of 5

Concatenate Problem

  1. #1
    EW
    Guest

    Concatenate Problem

    All -
    I have a formula that I'm using on the spreedsheet (not in VB) that has been
    concatenating the text of certain cells. I've run into a problem that is
    telling me that "You have entered to many arguments for this fuction". Here
    is an example of what I using:

    Current formula:

    =CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    Line: ",AG30,"; On-prod: ",AH30,".
    PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    ",AJ30,".
    Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    ")

    What I'd like to have:

    =CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    Line: ",AG30,"; On-prod: ",AH30,".
    PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    ",AJ30,". PROV: ",AF30," EST: AHT: ",J4,"; Req. Line: ",AK30,"; On-prod:
    ",AL30,".
    Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    ")

    I added an extra line in the formula. Any help would be great.

    Thanks in advance!


  2. #2
    Ron Rosenfeld
    Guest

    Re: Concatenate Problem

    On Thu, 6 Jul 2006 13:39:02 -0700, EW <[email protected]> wrote:

    >All -
    >I have a formula that I'm using on the spreedsheet (not in VB) that has been
    >concatenating the text of certain cells. I've run into a problem that is
    >telling me that "You have entered to many arguments for this fuction". Here
    >is an example of what I using:
    >
    >Current formula:
    >
    >=CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    >Line: ",AG30,"; On-prod: ",AH30,".
    >PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    >",AJ30,".
    >Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    > ")
    >
    >What I'd like to have:
    >
    >=CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    >Line: ",AG30,"; On-prod: ",AH30,".
    >PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    >",AJ30,". PROV: ",AF30," EST: AHT: ",J4,"; Req. Line: ",AK30,"; On-prod:
    >",AL30,".
    >Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    > ")
    >
    >I added an extra line in the formula. Any help would be great.
    >
    >Thanks in advance!


    From Excel specifications:

    Arguments in a function 30

    Your formula has 31 arguments.

    One workaround, not involving VBA, would be to split your formula into two
    cells.

    A1: =CONCATENATE( args 1-15)
    A2: =CONCATENATE(A2, args 16-30)

    Another solution is to not use CONCATENATE at all. Rather use the "&"
    operator:

    ="CCSL - PMHS Interval: "&AF30&" EST: AHT: "&J2&";
    Req.Line: "&AG30&"; On-prod: "&AH30&". PRO Interval: "
    &AF30&" EST: AHT: "&J3&"; Req. Line: "&AI30&
    "; On-prod: "&AJ30&". PROV: "&AF30&" EST: AHT: "&
    J4&"; Req. Line: "&AK30&"; On-prod: "&AL30&".Combined Interval: "
    &AF30&" EST: Req. Line: "&AM30&"; On-prod: "&AN30&". "


    --ron

  3. #3
    Rich J
    Guest

    RE: Concatenate Problem

    I think you simply exceeded the limit of 30 arguments for the function by
    adding the extra line
    Try using & instead


    "EW" wrote:

    > All -
    > I have a formula that I'm using on the spreedsheet (not in VB) that has been
    > concatenating the text of certain cells. I've run into a problem that is
    > telling me that "You have entered to many arguments for this fuction". Here
    > is an example of what I using:
    >
    > Current formula:
    >
    > =CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    > Line: ",AG30,"; On-prod: ",AH30,".
    > PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    > ",AJ30,".
    > Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    > ")
    >
    > What I'd like to have:
    >
    > =CONCATENATE("CCSL - PMHS Interval: ", AF30, " EST: AHT: ", J2, "; Req.
    > Line: ", AG30, "; On-prod: " ,AH30, ".
    > PRO Interval: " ,AF30 ," EST: AHT: " ,J3 ,"; Req. Line: " ,AI30, "; On-prod:
    > " ,AJ30 ,". PROV: " ,AF30 ," EST: AHT: " ,J4 ,"; Req. Line: " ,AK30 ,"; On-prod:
    > " ,AL30 ,".
    > Combined Interval: " ,AF30 ," EST: Req. Line: " ,AM30 ,"; On-prod: " ,AN30 ,".
    > ")
    >
    > I added an extra line in the formula. Any help would be great.
    >
    > Thanks in advance!
    >


  4. #4
    EW
    Guest

    Re: Concatenate Problem

    Thanks, that worked great!

    "Ron Rosenfeld" wrote:

    > On Thu, 6 Jul 2006 13:39:02 -0700, EW <[email protected]> wrote:
    >
    > >All -
    > >I have a formula that I'm using on the spreedsheet (not in VB) that has been
    > >concatenating the text of certain cells. I've run into a problem that is
    > >telling me that "You have entered to many arguments for this fuction". Here
    > >is an example of what I using:
    > >
    > >Current formula:
    > >
    > >=CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    > >Line: ",AG30,"; On-prod: ",AH30,".
    > >PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    > >",AJ30,".
    > >Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    > > ")
    > >
    > >What I'd like to have:
    > >
    > >=CONCATENATE("CCSL - PMHS Interval: ",AF30," EST: AHT: ",J2,"; Req.
    > >Line: ",AG30,"; On-prod: ",AH30,".
    > >PRO Interval: ",AF30," EST: AHT: ",J3,"; Req. Line: ",AI30,"; On-prod:
    > >",AJ30,". PROV: ",AF30," EST: AHT: ",J4,"; Req. Line: ",AK30,"; On-prod:
    > >",AL30,".
    > >Combined Interval: ",AF30," EST: Req. Line: ",AM30,"; On-prod: ",AN30,".
    > > ")
    > >
    > >I added an extra line in the formula. Any help would be great.
    > >
    > >Thanks in advance!

    >
    > From Excel specifications:
    >
    > Arguments in a function 30
    >
    > Your formula has 31 arguments.
    >
    > One workaround, not involving VBA, would be to split your formula into two
    > cells.
    >
    > A1: =CONCATENATE( args 1-15)
    > A2: =CONCATENATE(A2, args 16-30)
    >
    > Another solution is to not use CONCATENATE at all. Rather use the "&"
    > operator:
    >
    > ="CCSL - PMHS Interval: "&AF30&" EST: AHT: "&J2&";
    > Req.Line: "&AG30&"; On-prod: "&AH30&". PRO Interval: "
    > &AF30&" EST: AHT: "&J3&"; Req. Line: "&AI30&
    > "; On-prod: "&AJ30&". PROV: "&AF30&" EST: AHT: "&
    > J4&"; Req. Line: "&AK30&"; On-prod: "&AL30&".Combined Interval: "
    > &AF30&" EST: Req. Line: "&AM30&"; On-prod: "&AN30&". "
    >
    >
    > --ron
    >


  5. #5
    Ron Rosenfeld
    Guest

    Re: Concatenate Problem

    On Thu, 6 Jul 2006 14:13:02 -0700, EW <[email protected]> wrote:

    >Thanks, that worked great!


    You're welcome. Thanks for the feedback.
    --ron

+ 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