How to Add Suffix in Excel (4 Easy Ways)

How to Add Suffix in Excel: 4 Easy Ways

Our sample dataset has three columns labeled Name, Suffix, and Email. how to add suffix in excel


Method 1 – Utilize CONCATENATE Function to Add Suffix in Excel

STEPS:

  • Select the D5 cell.
  • Input the formula below in cell D5.
=CONCATENATE(B5,C5)

Utilize CONCATENATE Function to Add Suffix in Excel

  • Click and drag down the Fill Handle icon till Cell D10 to apply the formula to the other cells.


Method 2 – Use “&” Operator in Excel to Insert Suffix

STEPS:

  • Select cell D and add the formula given below.
=B5&C5

Use “&” Operator in Excel to Insert Suffix

  • Click and drag down the Fill Handle icon till Cell D10 to apply the formula to the other cells.

Read More: How to Add Text Suffix with Custom Format in Excel


Method 3 – Attach Suffix with Format Cells Attributes

STEPS:

  • Select cell D and add the formula below.
=B5
  • Hit the Tab or Enter key.
  • It will give the output james.

Attach Suffix with Format Cells Attributes

  • Click and drag down the Fill Handle icon till Cell D10 to apply the formula to the other cells.

  • Select cell D5.
  • Hold the Shift key and press the Down Arrow key to select the range from D5 to D10.

Attach Suffix with Format Cells Attributes

  • Right-click on the range.
  • Choose Format Cells.

  • The Format Cells window will pop up.
  • Go to Custom.
  • Add @”@outlook.com” in the Type Section.
  • Hit OK.

  • It will add the suffix to the selected range of cells.

Output of Attaching Suffix with Format Cells Attributes

Read More: How to Add Suffix Without Formula in Excel


Method 4 – Add Suffix Through Excel VBA

STEPS:

  • Choose the active sheet of the worksheet.
  • Navigate to Developer.
  • Select Visual Basic.

Add Suffix Through Excel VBA

  • Click Insert, followed by Module.

  • Add the code below into the Module Box.
Sub SOFTEKOaddSuffix()
Dim i As Integer
Dim name
Dim suffix
Dim email
For i = 5 To 10
name = Cells(i, 2).Value
suffix = Cells(i, 3).Value
Cells(i, 4).Value = name & suffix
email = Cells(i, 4).Value
Next
End Sub
  • Press F5 or click on the Run button.

  • The suffix will be added to the selected cell range.

Result of Adding Suffix Through Excel VBA


Download Practice Workbook


Related Articles


<< Go Back to Suffix and Prefix | Text Formatting | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Lutfor Rahman Shimanto
Lutfor Rahman Shimanto

Lutfor Rahman Shimanto, BSc, Information Technology, Jahangirnagar University, Bangladesh, has worked with the ExcelDemy project for over a year. He has written 50+ articles and provided solutions of 100+ comments for ExcelDemy. Currently, he works as an Excel & VBA Developer and provides support and solutions in the ExcelDemy Forum. He has solved 100+ ExcelDemy Forum problems. His work and learning interests are in developing various Excel & VBA and Desktop applications. Outside of work, he enjoys Chess... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo