[GIS] Prefixing multiple values within QGIS using the Field Calculator

field-calculatorqgis

I have a column in my my attribute table that contains a series of individually numbered locations. I wish to prefix all of these numbers with a letter, this letter will be the same for each of the values. E.g. 100, 200 and 300 would become A100, A200 and A300. I have a lot of data so simply going through and renaming would take a lot of time.

I have a feeling this would be achieved through the Field Calculator but unsure of which expression would be best for this?

Best Answer

Simple solution:

'A' ||  "column name" 

in a new field of type String.