FormulaCraft

How to add a suffix to every cell in a column in Excel and Google Sheets

Topic:Text manipulation
Excel & Google Sheets
=A2&" USD"

Verified example

Computed by a real spreadsheet engine on the sample data below.

Amount
1200
450
3300
780

=A2&" USD"1200 USD

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1In the output column, type the cell reference followed by & and the suffix in quotes: =A2&" USD".
  2. 2Press Enter, then copy the formula down the entire column.
  3. 3For a dynamic suffix stored in a cell (e.g., D1), use =A2&$D$1.
  4. 4To conditionally add a suffix only to non-blank cells: =IF(A2<>"",A2&" USD","").
  5. 5Paste as values if you need to remove the formula after applying the suffix.

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

How do I add a suffix to numbers without losing the numeric value?

You can't — concatenation produces text. Use a custom number format instead: in Format Cells enter 0.00 " USD" to display a suffix without converting the underlying number to text.

Can I use CONCAT instead of &?

Yes, =CONCAT(A2," USD") is equivalent. Use TEXTJOIN if you need a separator between multiple values.

More on Text manipulation

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: