[GIS] VB ArcGIS 9.3 Field Calculator

vba

I'm trying to join one column into another. one is "acct id" and the other is "taxid number". Acct is from one county whereas the tax is from another, so there are blanks in the number of parcels/rows. I did it before last week and I had it written down how to do this.

What I need to do is move 'acct id' into the 'taxid' column. I remember having " " as part of the vb script. What are the steps involved as I keep getting a blank field when I attempt it.

Best Answer

If you want to move the values in the 'acct id' into the 'taxid' Field, it should be as simple as:

[acct_id] 

(The field names cannot have a space, so I do not think that 'acct id' is the field name, it should be the field Alias)

If on the other hand, you want to concatinate the strings from both 'acct id' & 'taxid' into a third field, it can be:

[acct_id] & [taxid]

if you want a space inbetween them, it hsould be:

[acct_id] & " " & [taxid]
Related Question