How to use the TEXTJOIN function in Excel 2016
We are familiar with the CONCATENATE function to combine different strings or numbers in Excel. However it has some limitations:
1. Arguments must be separated by commas.
2. This function cannot retrieve the object in a scope to perform the merge.
3. It has no permissions to add separators.
With these disadvantages, a new function introduced in Excel 2016 is called TEXTJOINT, which performs the same function as CONCATENATE but is more efficient.
Description of TEXTJOIN function
The TEXTJOIN function concatenates text from multiple ranges and / or strings, which includes a delimiter between the connected text value. If the delimiter is an empty text string, this function effectively matches the ranges.
TEXTJOIN function syntax
This function has the following syntax:
TEXTJOIN (delimiter, ignore_empty, text1, [text2], .)
Let's parse the above:
- Delimiter ( delimiter ) is the character inserted between the combined text. For example, a person's first and last name are combined with a '_' (underline) delimiter to identify the name easily and avoid spaces in the string. In this example, the underscore is a delimiter and the associated text is the first and last name.
- Ignore empty is used to ignore empty cells while linking objects in scope. We can set options to ignore empty cells by leaving TRUE values for this option and FALSE if we want to have empty cells.
- Text 1 is the text to be combined, can be a single cell or a range of cells.
- Text 2 is additional text that needs to be combined. You can use up to 252 text arguments, including Text 1. Similar to Text 1, it can be an individual cell or a range of cells.
Example of TEXTJOIN function
Here are some examples so you can better understand this function.
Example 1:
In this example, we have a data table that includes the names, surnames and states of each person. Here we will use the TEXTJOIN function to create a unique ID for each person by combining a first name, last name, and state. The formula uses an underscore as a delimiter, sets the second argument to TRUE so that there is no blank cell and range A2: C2 is the connected range.
Drag the formula in cell D2 down, you will get the ID for each person.
Example 2:
In this example, still in the data table above, we find a list of all the names in the state of LA by using the TEXTJOIN function twice. First use the TEXTJOIN function in conjunction with the IF function to find out who matches the above condition, ie the person who lives in the LA state. The result will return the person's full name, when we pull down the formula, the column will be filled with their full name. If you live in another state, it will leave that box blank.
Next, we will use the TEXTJOIN function again to get the list in a comma separated by commas. To do so, we will write the following formula in cell B2.
= TEXTJOIN (',', TRUE, D5: D13)
As shown in the picture below:
The result will be a comma-separated list of names as shown below:
Empty cells will be ignored from the associated string because we set the second option to TRUE.
Example 3:
We can use the TEXTJOIN function to create auto-complete sentences. For example, use it to write a comment on a transcript to know which class it belongs to.
In the example below, we will create a LOOKUP table to find the student's corresponding class and return comments using the TEXTJOIN function. The following table contains point and class range information corresponding to that point range.
The LOOKUP formula is as follows:
= LOOKUP (F4, L5: L8, N5: N8)
As we know, LOOKUP has at least three arguments, first lookup value, F4 in this example. The second argument is the search range ie L5: L8 in this formula and the last argument is the returned range is N5: N8 in the formula. Therefore, the formula searches for points in the first column (Column L) and returns the value from Column N.
The formula for getting information from the following table is between E3: F5.
The Lookup formula is discussed in the preceding paragraph present in cell F5 and returns a C rank for 34. Now we will use the TEXTJOIN function to create a comment that can be placed in reports.
Suppose we want a sentence like this:
[Candidate tên] bạn có ký hiệu [ký hiệu], và bạn cấp là [Grade].
We will have the following formula:
= TEXTJOIN ("", TRUE, F3, "You reached", F4, "points, ratings", F5, ".")
In this formula:
1. The first argument is the delimiter that is set to a space (''), making it look like a sentence.
2. The second argument is set to TRUE as normal.
3. F3 is the name of the student
4. The sequel to 'You' will remain the same for each student's case.
5. Next is F4, points for students.
6. The next argument to the fixed section will remain the same for all cases.
7. The second argument is the class in cell F5.
8. The last argument is the punctuation expression ending the sentence.
I wish you all success!
See more:
- These are the most basic functions in Excel that you need to understand
- How to use Vlookup function in Excel
- How to use the SUM function to calculate totals in Excel
You should read it
- CONCAT vs. TEXTJOIN: Which function should I choose to concatenate data?
- How to use the IFS function in Excel 2016
- How to use Hlookup function on Excel
- Basic Excel functions that anyone must know
- How to use MAXIFS function in Excel 2016
- How to use the SWITCH function in Excel 2016
- How to use the SUM function to calculate totals in Excel
- How to use the LEN function in Excel
- How to use MID functions to get strings in Excel
- How to use the WRAPROWS function in Excel
- How to use the SUMIF function in Excel
- How to use the DAVERAGE function in Excel
Maybe you are interested
How to turn a photo into a painting using the Generative Fill function in Photoshop
How to use the TREND function in Excel
Google Sheets Functions to Simplify Your Budget Spreadsheets
Instructions for using the TRIMRANGE function to clean up Excel tables
How to master numerical data in Google Sheets with the AVERAGE function
Don't buy headphones if they lack this important function!