I am creating a model in ArcPro for a suitability analysis. I have 3 factors that will influence my final score. Right now I run a series of calculations to determine a score for each factor. What I would like to do is add up the score from each factor to determine a final score (Score A + Score B + Score C).
I would like to use a join/merge or other tool to create a table that contains 1 polygon feature for each area of interest (OBJECTID) populated with a score fields from 3 separate tables. The merge tool appends all of the tables together like this:
| OBJECTID | A_SCORE | B_SCORE | C_SCORE | Final_SCORE |
| 1 | 0 | 0 | 0 | 0 |
| 1 | 0 | 2.5 | 0 | 2.5 |
| 1 | 0 | 0 | 18.13 | 18.13 |
| 2 | 5 | 0 | 0 | 5 |
| 2 | 0 | 5 | 0 | 5 |
| 2 | 0 | 0 | 21.8 | 21.8 |
but what I would like to see is 1 row per OBJECTID which should look like this:
| OBJECTID | A_SCORE | B_SCORE | C_SCORE | Final_SCORE |
| 1 | 0 | 2.5 | 18.13 | 20.63 |
| 2 | 5 | 5 | 21.8 | 31.8 |
Which tools should I be using to accomplish this? I am currently only including 3 factors but will have 9 in total so I'm hoping there are some batch tools available to make the model less complicated.