Concatenate Question (formatting for blank spaces)

gregz12345

New Member
Joined
Sep 19, 2018
Messages
7
Hello All-

I have a report with four columns listing differing FTA names.
I need to combine these columns into one column (concatenate) separated by commas, but some of the fields may be blank and when this happens I can’t have a space or double commas.
Below is an example of what I am looking for.


NAFTA
AUSFTA
KORUS
UCFTA
I want this:
NAFTA
AUSFTA
KORUS
UCFTA
NAFTA,AUSFTA,KORUS,UCFTA
NAFTA
KORUS
NAFTA,KORUS
NAFTA
UCFTA
NAFTA,UCFTA
AUSFTA
KORUS
AUSFTA,KORUS
NAFTA
NAFTA

<tbody>
</tbody>



Thanks!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Assuming you concatenated text will not be longer than 99 characters (increase the 99 if it could be), then give this formula a try...

=MID(IF(A2="","",","&A2)&IF(B2="","",","&B2)&IF(C2="","",","&C2)&IF(D2="","",","&D2),2,99)
 
Upvote 0
I came up with the following:

=CONCATENATE(IF(ISBLANK($A1),"",$A1&","),IF(ISBLANK($B1),"",$B1&","),IF(ISBLANK($C1),"",$C1&","),IF(ISBLANK($D1),"",$D1&","))
 
Upvote 0

Forum statistics

Threads
1,213,558
Messages
6,114,296
Members
448,564
Latest member
ED38

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top