How to add text to the beginning or end of all cells in Excel?
Sometimes you may need to add same specific text to the beginning or end of all cells in a selection. If you added the text to each cell manually one by one, it must be time-consuming. Are there easier ways? Yes, there are many easy tricks to add same text to the beginning or end of all cells in a selection.
Add specified text to the beginning / end of all cells with formulas
Add specified text to the beginning / end of all cells with VBA
Add specified text to the beginning / end of all ells with Kutools for Excel
Add specified text to the specified position of all cells with Kutools for Excel
Add specified text to the beginning / end of all cells with formulas
There are two formulas to add specified text to the beginning or end of all selected cells in Microsoft Excel.
Method 1: & formula
Enter the ="Class A:"&A2 in Cell C2, and then drag the fill handle down to the cells you want to aply this formula. And the specific text has been added before all of the cells, see screenshot:
Method 2: Concatenate formula
Enter the =Concatenate ("Class A:", A2) in Cell C2, and then drag and copy this formula to the cells you want to use, see screenshot:
Notes:
1. If you want to add other specified text in each cell, just replace the Class A: with your text in both formulas.
2. The formulas of =A2 & ": Class A" and =Concatenate (A2, ": Class A") will add : Class A at the end of the cells.
3. Both formulas will not modify the contents in selection directly.
Add same text to a specific location of each cell in Excel |
How could you add text or characters to the beginning of multiple cells, or add text or characters to the end of cells or insert text or characters between existing text? With Add Text utility of Kutools for Excel, you can quickly apply the following operations: . Click for full-featured free trial in 30 days! |
![]() |
Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in full future 30 days. |
Add specified text to the beginning / end of all cells with VBA
If you want to add specified text in each cells of a selection directly, the following VBA Macro will ease your work.
1. Select the range in which you will add specified text;
2. Hold down the Alt + F11 keys in Excel, and it opens the Microsoft Visual Basic for Applications window.
3. Click Insert > Module, and paste the following VBA code in the Module Window.
VBA: Adding specified text at the beginning of each cell:
Sub AppendToExistingOnLeft()
Dim c As Range
For Each c In Selection
If c.Value <> "" Then c.Value = "CN- " & c.Value
Next
End Sub
4. Press F5 key to run this macro. And all of the cells will be added the value CN- before the cell contents.
Notes: 1. To add some specific text at the end of each cell, please apply the following VBA code.
VBA: Adding specified text at the end of each cell:
Sub AppendToExistingOnRight()
Dim c as range
For each c in Selection
If c.value <> "" Then c.value = c.value & "-CN"
Next
End Sub
And you will get the following result:
2. you can change the variable "CN-" or "-CN" of the above codes.
Add specified text to the beginning / end of all cells with Kutools for Excel
Kutools for Excel's Add Text tool will help you quickly add specified text to the beginning or end of each cell in a selection.
Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. |
After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)
1. Select the range in which you will add specified text.
2. Click the Kutools > Text > Add Text…. See screenshot:
3. In Add Text dialog box, enter the text you need to add in the Text box.
(1.) If you check Before first character from the Position section, and the specific text will be added in front of all the cell values, see screenshot:
(2.) If you check After last character from the Position section, and the specific text will be added at the end of the cell values, see screenshot:
Notes:
1. Kutools for Excel's Add Text tool allows you to preview the changes in selection in Preview section.
2. If you check the Skip non-text cells option, this tool won't add the specified text in cells with non-text content.
Add specified text to the specified position of all cells with Kutools for Excel
Applying Kutools for Excel's Add Text function, you can not only add the specified text to the beginning or end of the cells, but also you can add the specified text to the specified position of the cells.
After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)
1. Select a range you want to add text to, and then click Kutools > Text > Add Text.
2. The Add Text dialog will be displayed, and enter the specified text and specify the certain position which you want to insert the text in the boxes. See screenshot:
Here I type 3 into the Specify textbox means that add text after the third character of the string.
3. Click Ok or Apply. The specified text has been added to the specified position of the cells. See screenshot:
Tip:
(1) In Specify textbox, you can type numbers with comma separate to add text in multiple position at the same time.
(2)If you want to add text before every uppercase letter, the 1st letter is uppercase option in Add Text utility can help you.
Also, you can add text before every lowercase letter, or every number letter.
Click Download and free trial Kutools for Excel Now !
Demo: Add text to the beginning or end of all cells
Relative articles:
- Add strings of text to multiple cells
- Add/ insert leading zeros to numbers or text
- Add/ insert prefix or suffix to selected cells, rows, and columns
- Add percentage symbol for multiple numbers in cells
Best Office Productivity Tools
Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel
Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...
Supports Office/Excel 2007-2021 & newer, including 365 | Available in 44 languages | Enjoy a full-featured 30-day free trial.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!























































