Google Sheets – How to Append Text to Each Column

concatenateformulasgoogle sheetsgoogle-sheets-arrayformularegex

I have a Google Sheets that has about 200 columns. Each one is a name, and to each one, I want to append -banner.jpg. For example:

abcde
fghij
klmno

will all be updated to:

abcde-banner.jpg
fghij-banner.jpg
klmno-banner.jpg

Is there a way to batch process this?

Best Answer

Please try:

Find: (.+)
Replace with: $1-banner.jpg
Search: This sheet
Search using regular expressions
Replace all.