Merge multiple cells, separated by comma space but ignore if cells are blank

slam

Well-known Member
Joined
Sep 16, 2002
Messages
876
Office Version
  1. 365
  2. 2019
Is there an easy/elegant solution to this where I'm not adding multiple IF(ISBLANK() conditions to my formula?

Excel Formula:
=D2&", "&E2&", "&F2

This works great if there's values in D, E, F, but when there's not, I get results like:

, tiger

How can I leave out the comma space if D2 or E2 are blank?

Thanks!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
How about
Excel Formula:
=textjoin(", ",,D2:F2)
 
Upvote 1
Solution
Wow, that is the elegent solution I was looking for; I was not familiar with that function. Thank you!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,066
Messages
6,128,586
Members
449,461
Latest member
jaxstraww1

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