Is there a way to concatenate fields in field calculator of QGIS? (e.g. hectares + ' ha')
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
You can use tostring() to concat number fields Ex hectares || ' ha' || tostring(id) |
|||
|
|
|
Yes! Using the field calculator, the syntax is: FIELDNAME + FIELDNAME EDIT: This works on string fields. With Integers, it will just perform the math and add the fields together. |
|||
|
|