+ Reply to Thread
Results 1 to 7 of 7

Using IF and Concatenate Function

  1. #1
    Registered User
    Join Date
    03-06-2020
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    22

    Question Using IF and Concatenate Function

    Hi Guys,

    Hope someone can help me, been thinking and trying this formula for a while but can't seem to make it work. I have a file wherein I need to concatenate different rows and will ignore blank rows using if function so it will look neat. I used different "IF" functions but I can't seem to make it work. Hope someone can help me. I've attached a workbook and attached a picture just in case. Thanks in advance.

    Untitled.png
    Attached Files Attached Files
    Last edited by charlesav; 03-06-2020 at 08:58 AM.

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,414

    Re: Using IF and Concatenate Function

    What formula are you using? The attachment just shows the results of the formula.

    You could use SUBSTITUTE to get rid of the unwanted space-commas, like this:

    =SUBSTITUTE(your_existing_formula," ,","")

    Hope this helps.

    Pete

  3. #3
    Registered User
    Join Date
    03-06-2020
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    22

    Re: Using IF and Concatenate Function

    Quote Originally Posted by Pete_UK View Post
    What formula are you using? The attachment just shows the results of the formula.

    You could use SUBSTITUTE to get rid of the unwanted space-commas, like this:

    =SUBSTITUTE(your_existing_formula," ,","")

    Hope this helps.

    Pete
    Hi Pete,

    Thanks for the reply. I've updated the attached Excel file for you to see the formula I'm using. Kind of hard to explain if I take a picture. I need to fix the formula highlighted in Yellow, seems like "substitute" is not the correct formula for it. But let me know if you want me to take another picture. Thanks.

  4. #4
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Using IF and Concatenate Function

    Pete's suggestion (as I interpret it) would be this...
    =SUBSTITUTE(IF(ISTEXT(@F1:F8)=1,CONCATENATE(F1,", ",F2,", ",F3,", ",F4,", ",F5,", ",F6,", ",F7,", ",F8),CONCATENATE(F1,", ",F2,", ",F3,", ",F4,", ",F5,", ",F6,", ",F7,", ",F8))," ,","")
    but it does leave you a trailing comma in your example.
    Now, how many of these do you have at any time? Because the number of them as you have it in your formula will require you to make continual adjustments as the column gets longer.
    But if you only have a reasonable limit, this if then statement would work.

    =IF(AND(F1<>"",F2=""),F1,IF(AND(F1<>"",F2<>"",F3=""),F1&", "&F2,IF(AND(F1<>"",F2<>"",F3<>"",F4=""),F1&", "&F2&", "&F3,IF(AND(F1<>"",F2<>"",F3<>"",F4<>"",F5=""),F1&", "&F2&", "&F3&", "&F4,IF(AND(F1<>"",F2<>"",F3<>"",F4<>"",F5<>"",F6=""),F1&", "&F2&", "&F3&", "&F4&", "&F5,IF(AND(F1<>"",F2<>"",F3<>"",F4<>"",F5<>"",F6<>"",F7=""),F1&", "&F2&", "&F3&", "&F4&", "&F5&", "&F6,IF(AND(F1<>"",F2<>"",F3<>"",F4<>"",F5<>"",F6<>"",F7<>"",F8=""),F1&", "&F2&", "&F3&", "&F4&", "&F5&", "&F6&", "&F7,IF(AND(F1<>"",F2<>"",F3<>"",F4<>"",F5<>"",F6<>"",F7<>"",F8<>""),F1&", "&F2&", "&F3&", "&F4&", "&F5&", "&F6&", "&F7&", "&F8,""))))))))
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  5. #5
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,414

    Re: Using IF and Concatenate Function

    It always helps to see an appropriate sample workbook.

    You can simplify the formula in F9 to this:

    =SUBSTITUTE(TRIM(CONCATENATE(F1," ",F2," ",F3," ",F4," ",F5," ",F6," ",F7," ",F8))," ",", ")

    Note that I am only adding a space after each term in the CONCATENATE function, and the TRIM function around this will remove any multiple and leading/trailing spaces. The SUBSTITUTE function then changes any remaining spaces to comma-space.

    Hope this helps.

    Pete

  6. #6
    Registered User
    Join Date
    03-06-2020
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    22

    Re: Using IF and Concatenate Function

    Quote Originally Posted by Pete_UK View Post
    It always helps to see an appropriate sample workbook.

    You can simplify the formula in F9 to this:

    =SUBSTITUTE(TRIM(CONCATENATE(F1," ",F2," ",F3," ",F4," ",F5," ",F6," ",F7," ",F8))," ",", ")

    Note that I am only adding a space after each term in the CONCATENATE function, and the TRIM function around this will remove any multiple and leading/trailing spaces. The SUBSTITUTE function then changes any remaining spaces to comma-space.

    Hope this helps.

    Pete
    Exactly what I've been looking for. Thank you so much for the help!!

  7. #7
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,414

    Re: Using IF and Concatenate Function

    You're welcome - thanks for the rep.

    If that takes care of your original question, please take a moment to select Thread Tools from the menu above and to the right of your first post in this thread, and mark the thread as SOLVED.

    Pete

+ 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. CONCATENATE Function
    By bwils39 in forum Excel General
    Replies: 3
    Last Post: 03-30-2017, 12:25 AM
  2. Using the CONCATENATE function nested in an IF function
    By rottweiler_lvr in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-07-2013, 10:02 PM
  3. Concatenate and if function used together
    By Connie5761 in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 12-05-2012, 02:00 PM
  4. [SOLVED] The Concatenate Function
    By raphiduani in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 11-27-2012, 11:58 AM
  5. Concatenate function
    By stephaniex3 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 11-23-2012, 09:22 AM
  6. Excel 2007 : CONCATENATE function
    By Jerseynjphillypa in forum Excel General
    Replies: 6
    Last Post: 10-16-2011, 11:47 AM
  7. Concatenate Function
    By billykiller05 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-15-2010, 11:29 AM

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