+ Reply to Thread
Results 1 to 12 of 12

If Then Concatenation

  1. #1
    Registered User
    Join Date
    09-03-2008
    Location
    Dallas Texas
    Posts
    35

    If Then Concatenation

    I have a worksheet that has data in cells A3 - J3. One value will be placed in one of the cells directly below A3-J3. Is there a way to look at the cells A4-J4 and determin what cell has the value and then preform a concatenation on that cell pluss the one directly above it.

    I have included a worksheet as an example.

    Thanks for any and All help.

    -Lee
    Attached Files Attached Files
    Last edited by leewcrawford; 02-26-2009 at 11:49 AM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: If Then Concatenation

    If the value inserted into row 4 is always 1 then:

    =INDEX(A3:M3,MATCH(1,A4:M4,0))&" 1"

    Else you will need to alter slightly... not much though.

  3. #3
    Registered User
    Join Date
    09-03-2008
    Location
    Dallas Texas
    Posts
    35

    Re: If Then Concatenation

    The value might not always be 1. How would i alter it to accept any value?

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: If Then Concatenation

    Perhaps:

    =LOOKUP(2,1/(A4:M4<>""),A3:M3&" "&A4:M4)

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

    Re: If Then Concatenation

    for any value or text in row 4
    =INDEX(A3:M3,MATCH(0,INDEX(--(A4:M4=0),0),0))&" "&INDEX(A4:M4,MATCH(0,INDEX(--(A4:M4=0),0),0))
    then again
    the above is somewhat shorter !!
    "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

  6. #6
    Registered User
    Join Date
    09-03-2008
    Location
    Dallas Texas
    Posts
    35

    Re: If Then Concatenation

    Thanks for all the help. That worked great.

  7. #7
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: If Then Concatenation

    Martin, that's an interesting approach and not one I've seen before, however, it wouldn't work if the value entered in row 4 was 0 whereas the more "traditional" LOOKUP approach would cover all bases (and has less calls).

  8. #8
    Registered User
    Join Date
    09-03-2008
    Location
    Dallas Texas
    Posts
    35

    Re: If Then Concatenation

    I just found another issue. With the formula =LOOKUP(2,1/(A4:M4<>""),A3:M3&" "&A4:M4). If there is no value it gives me a #N/A. Is there a way to remove it?

  9. #9
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: If Then Concatenation

    Assuming the values in row 4 are NOT results of formulae (ie blanks not nulls) then:

    =IF(COUNTA(A4:M4),LOOKUP(2,1/(A4:M4<>""),A3:M3&" "&A4:M4),"")

    If they are results of formulae and blanks are really Nulls you will need to change the approach to one of:

    =IF(COUNTBLANK(A4:M4)<COLUMNS(A4:M4),LOOKUP(2,1/(A4:M4<>""),A3:M3&" "&A4:M4),"")

    or

    =LOOKUP(REPT("z",255),CHOOSE({1,2},"",LOOKUP(2,1/(A4:M4<>""),A3:M3&" "&A4:M4)))

  10. #10
    Registered User
    Join Date
    09-03-2008
    Location
    Dallas Texas
    Posts
    35

    Re: If Then Concatenation

    That solves it. Thanks, You just made my day

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

    Re: If Then Concatenation

    donkeyote you can use MATCH(0,INDEX(--(A4:M4=""),0),0) instead
    but as you say lookup is shorter

  12. #12
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: If Then Concatenation

    agreed, you could ... would you want to though ??

    No complaints from me though I like seeing new approaches to stuff!

+ 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