How to Add a Suffix in a Spreadsheet (Excel or Google Sheets)?

Published in

on

Adding a suffix to text or numbers in spreadsheets like Microsoft Excel or Google Sheets is a common task, especially when formatting data like IDs, labels, units (e.g., “kg”, “cm”), or status tags. It is one of the most used feature.

Excel

Whether you’re formatting IDs, appending labels, or adding units like “kg” or “cm”, this simple trick can help keep your data clean and consistent.

What Is a Suffix?

A suffix is a group of characters you add at the end of a word, value, or string.

Example: Turning 123 into 123kgkg is the suffix.

How to Add a Suffix Using a Formula?

The easiest way is by using the & (ampersand) operator or the CONCATENATE / TEXT functions.

1. Using the & Operator.

Formula:

=A1 & "suffix"

📌 This joins the value in cell A1 with the suffix.

Example: If A1 = John, and you want to add -user:

=A1 & "-user"

Result: John-user

2. Using CONCATENATE Function.

Formula:

=CONCATENATE(A1, "suffix")

Example:

=CONCATENATE(A1, "@domain.com")

If A1 = support, Result = support@domain.com

📌 In newer versions, TEXTJOIN or TEXT might be preferred.

3. Using the TEXT Function (for Numbers).

If you’re working with numbers and want to retain formatting:

Formula:

=TEXT(A1, "0") & "kg"

Example: If A1 = 250, and you want to add kg:

=TEXT(A1, "0") & "kg"

Result: 250kg

Useful when combining numeric values with units like cm, USD, %, etc.

Real-Life Examples.

A (Original)B (Formula)C (Result)
100=A1 & “kg”100kg
sale=A2 & “-2025”sale-2025
user01=CONCATENATE(A3, “@email.com”)user01@email.com
89=TEXT(A4, “0.0”) & “%”89.0%

Tips.

🛠️ Always wrap the suffix in quotes " ". Like “KG”.

🛠️ For numbers, TEXT() ensures correct formatting.

🛠️ You can drag the formula down to apply it to an entire column/row.

Summary.

MethodUse CaseFormula Example
& operatorQuick suffix=A1 & "kg"
CONCATENATEMore readable string joining=CONCATENATE(A1, "USD")
TEXTKeep number formatting=TEXT(A1,"0") & "%"

Adding suffixes is a simple but powerful way to customize and enhance your spreadsheet data. Whether you’re prepping for reports, formatting labels, or organizing data, this little trick goes a long way!

Leave a Reply

Your email address will not be published. Required fields are marked *