Is it possible to concatenate 2 columns in a standalone table within an arcpro project? I believe this would be possible within the attribute rules of the table, but I am not familiar with attribute rules and how to set them up.
Any help would be greatly appreciated!
You mean by not adding a new text field and concatenating two existing fields into the new one, I am guessing.
This is the existing calculation topic
Attribute rule script expression examples—ArcGIS Pro | Documentation
or there may be something in their github site
This is the first time I tried this so I suggest you experiment with dummy data.
var ident = $feature.ident;
var model = $feature.model
return Concatenate([ident +" "+ model], ' ');
An Attribute Rule can be disabled here by checking it on in the Disabled column.
are you needing an attribute rule, or just looking for a way to concatenate?
Easiest way is probably with the Field Calculator. Open the attribute table in Pro, enable editing, right click on the field you want to update, select Calculate Field (or use Claculate Field GP Tool), then set expression to:
!field1! + " " + !field2!
will concatenate the two field values into one field with a space separating them. (remove the + " " to get rid of the space)
If you are wanting this 'automatically' when you add/edit the data, then an attribute rule is probably what you are after.
R_