+ Reply to Thread
Results 1 to 7 of 7

Concatenation problem

  1. #1
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb Concatenation problem

    I have data in four cells i-e M4, N4, O4, P4. Data in these cells is result of formulas in them. Sometimes all formulas return values and sometimes only first or first two returns values and others remain blank.
    (blank cell will always be the most right cell)
    I want to put a formula in a single cell that will join all values appearing in above four cells but each should be seperated with a comma and a space.

    Regards.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Hi,

    Does this work for you

    =IF(COUNTBLANK(M4:P4)=4,"",IF(COUNTBLANK(M4:P4)=3,M4,IF(COUNTBLANK(M4:P4)=2,M4&" ,"&N4,IF(COUNTBLANK(M4:P4)=1,M4&" ,"&N4&" ,"&O4,M4&" ,"&N4&" ,"&O4&" ,"&P4))))

    VBA Noob

  3. #3
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by VBA Noob
    Hi,

    Does this work for you

    =IF(COUNTBLANK(M4:P4)=4,"",IF(COUNTBLANK(M4:P4)=3,M4,IF(COUNTBLANK(M4:P4)=2,M4&" ,"&N4,IF(COUNTBLANK(M4:P4)=1,M4&" ,"&N4&" ,"&O4,M4&" ,"&N4&" ,"&O4&" ,"&P4))))

    VBA Noob
    Having re-read the question, VBA - you need a comma-space and not as shown space-comma, otherwise works ok.

    ---

  4. #4
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by VBA Noob
    Hi,

    Does this work for you

    =IF(COUNTBLANK(M4:P4)=4,"",IF(COUNTBLANK(M4:P4)=3,M4,IF(COUNTBLANK(M4:P4)=2,M4&" ,"&N4,IF(COUNTBLANK(M4:P4)=1,M4&" ,"&N4&" ,"&O4,M4&" ,"&N4&" ,"&O4&" ,"&P4))))

    VBA Noob
    thank you it works for me.

    Bryan Hessey's formula leaves a comma at the end of the value.

  5. #5
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by starguy
    thank you it works for me.

    Bryan Hessey's formula leaves a comma at the end of the value.
    Hi Starguy, -
    I mis-read your question and assumed ANY cell could be blank, thus the formula was entered in two parts, the S and T cells, the S may leave a trailing comma, the T removed it.

    However, a re-read said that only the last cell(s) would be blank, so the more simple formula as per VB Noob worked well. (hence my post was withdrawn)

    Cheers.

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    No Problem

    Thanks for the feedback

    VBA Noob

  7. #7
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    I have figured out this one.

    =IF(M4="","",IF(N4="",M4,IF(O4="",M4&", "&N4,IF(P4="",M4&", "&N4&", "&O4,IF(P4<>"",M4&", "&N4&", "&O4&", "&P4)))))

+ 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