WISDOMBYDATA
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me

Concatenate cells and remove unwanted commas between values in MS Excel (Using a Macro)

9/17/2018

0 Comments

 

In my previous blog post I demonstrated how to concatenate cells and remove extra values between cells using a formula. i.e using the following formula.

=SUBSTITUTE(TRIM(CONCATENATE(B2," ",C2," ",D2," ",E2," ",F2))," ",",")

Seeing that the formula above may become too long if a higher number of cells are being concatenated, to keep the sanity, this week I want to show how to make this formula more efficient using a macro. Consider the data set below: 
Picture
The code below will create a function (i.e. CONCATCELLS) that when used in Excel will concatenate a range with a delimiter without needing to input the reference to all cells within the formula.

Function CONCATCELLS(REF As Range, DELIMITER As String) As String
Dim CELL As Range
Dim CONCAT As String
For Each CELL In REF
     CONCAT = CONCAT & CELL.Value & DELIMITER
     Next CELL
CONCATCELLS = Left(CONCAT, Len(CONCAT) - 1)
End Function

 
 Enter the code above under Module within the Developer tab of the Ribbon and then Save the spreadsheet .
The macro will create the following function:

= CONCATCELLS(B2:F2," ")

Here is what the function above returns for the B2:F2 range of our dataset.
Picture
Now all we need to do is to replace the CONCATENATE part of the original formula with our new CONCATCELLS function as follows:

=SUBSTITUTE(TRIM(CONCATCELLS (B2:F2," ")), " ", ",")
 
Here is the final outcome:
Picture
As you could see the formula is now shorter and there is no need to reference all cells :)
​
I have enclosed the sample workbook below so it could be referenced if needed.
concatcells.xlsm
File Size: 21 kb
File Type: xlsm
Download File


0 Comments



Leave a Reply.

    Categories

    All
    BI
    EXCEL
    MISC
    SQL

    Archives

    June 2020
    May 2020
    April 2020
    March 2020
    February 2020
    December 2019
    November 2019
    October 2019
    September 2019
    August 2019
    July 2019
    June 2019
    May 2019
    April 2019
    March 2019
    February 2019
    January 2019
    December 2018
    November 2018
    October 2018
    September 2018
    August 2018
    July 2018
    June 2018
    May 2018
    April 2018
    March 2018
    September 2017
    August 2017
    July 2017
    June 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    May 2015
    April 2015
    March 2015
    February 2015
    January 2015
    December 2014
    November 2014
    October 2014
    September 2014
    August 2014
    April 2014
    March 2014
    February 2014
    January 2014
    December 2013
    November 2013

Picture
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me