Concatenate cells but ignore blanks
This tutorial is going to show you how to combine cells with a certain delimiter but ignore blank cells in Excel.
How to concatenate cells but ignore blanks
As the below screenshot shown, you want to combine cells in each column with a delimiter “-” but ignore the blanks. Please do as follows.
Note: The below TEXTJOIN function is only available in Office 2019 and 365. If you are using the other Excel version, please find another formula at the end of the article.
Generic formula
=TEXTJOIN (delimiter, TRUE, Cell_range)
Arguments
Delimiter: The separator that is inserted between each combined text;
Cell_range: The range of cells you will combine into one cell.
How to use this formula?
1. Select a blank cell to output the combined texts.
2. Enter the below formula into it and press the Enter key. Select the result cell and then drag its Fill Handle right to apply the formula to other cells.
=TEXTJOIN("-",TRUE,B3:B8)
Notes:
- 1. In this formula, the character "-" uses to separate the combined texts, and B3:B8 is the range of cells you will combine into a cell. Please change it as you need.
- 2. If you are using the other Excel version, please apply the below formula to achieve it. And use the IF function to join more cells if you need.
=B3&IF(B4<>"","-"&B4,"")&IF(B5<>"","-"&B5,"")&IF(B6<>"","-"&B6,"")&IF(B7<>"","-"&B7,"")&IF(B8<>"","-"&B8,"")
How this formula works?
=TEXTJOIN("-",TRUE,B3:B8)
The TEXTJOIN function joins multiple cells in range B3:B8 with a "-" seperator, and ignore all blank cells.
Related function
Excel TEXTJOIN function
The Excel TEXTJOIN function joins multiple values from a row, column or a range of cells with specific delimiter.
Related formulas
Combine Cells With Comma
This tutorial provides some formulas to join multiple cells into one cell with comma as separator.
Combine First Initial And Last Name
This tutorial provides a formula to combine the first initial of the first name and the last name into one cell.
Move Or Combine Multiple Cell Contents Into One Cell
This tutorial will talk about how to combine multiple cell contents into one single cell. In Excel, you can use the & symbol, CONCATENATE or TEXTJOIN function to solve this task quickly and easily.
The Best Office Productivity Tools
Kutools for Excel - Helps You To Stand Out From Crowd
Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...
Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)
- One second to switch between dozens of open documents!
- Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
- Increases your productivity by 50% when viewing and editing multiple documents.
- Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.