Hi,
I have a feature class which contain property information, what I would like to do it total the value of all properties and display that in a table. The attribute table looks something like this:
ObjectId PID Value
0 1000 10,000
1 1001 25,000
2 1002 100,000 and so on...
I would like to some the value field, in order to give me a total for the entire area. So in this example, the value of all properties would be $135,000... I would like to calculate this and display it...
sounds like a pretty straight forward problem, but I can't seem to find a solution...
Thanks
I have a feature class which contain property information, what I would like to do it total the value of all properties and display that in a table. The attribute table looks something like this:
ObjectId PID Value
0 1000 10,000
1 1001 25,000
2 1002 100,000 and so on...
I would like to some the value field, in order to give me a total for the entire area. So in this example, the value of all properties would be $135,000... I would like to calculate this and display it...
sounds like a pretty straight forward problem, but I can't seem to find a solution...
Thanks
Or, is there a way to create a new field with a code equation that I can include in the Field Calculator that will add each individual record (sum) of a specified field so I can include that as a legend item?
Thanks,
Caleb
Is there anyway of appending to this table which is created?
This isn't really good design, however, since the Sum field will be the same for every record, i.e. every value for Sum_Value will be the same. This is a redundancy in the table.
Appreciate if anyone could shed some light on this issue. Thanks.