Hi Tamarin,
Are you analyzing the intersections only, or they are then to be related to the original polygon FC? And are there regions where more than two polygons can/will overlap? I am not the most experienced GIS user, but the following would perform what I understood from your last post (even if it is not very elegant), if overlaps happen between no more than two polygons at each location:
I assume that you have of polygon FC named "polygons", that contains the fields that you mentioned: ShftA, B, C.
1. Make a copy of "polygons", called "polygons_copy" for example.
2. Intersect both, keeping all the attributes. Say that the output is "polygons_intersect".
3. In Data Management/Layers .. use Make Feature Layer.
- Choose the intersect as an input FC.
- Build SQL expression "FID_polygons" < "FID_polygons_copy"
4. In the output, you can then sum by similar fields (e.g. create a field "ShftA_tot" and calculate it as "ShftA"+"ShftA_1").
Writing a script for this would take 10 minutes, but it might not be worth the effort for 4 operations.
If more than two polygons can overlap at the same location, things become a little more complicated.
Cheers,
Cedric