Hi Gregory.
Please follow the steps below:
1 You have two fields (hGoal and lGoal)
2 You have some create/save service called "robot_create"
3 Open data tab.
4 Click "Edit mapping"
5 Navigate to the Request tab.
7 Make mapping from one of these fields to the "ESTIMATEDScore" db field.
8 Click "Add JS" for this field.
9 JS editor appears. Populate it with following code:
pre
var lG = parseInt(Appery("lGoal").val());
var hG = parseInt(Appery("hGoal").val());
var result = lG + hG;
return result;/pre
Note: "lGoal" and "hGoaL" are your input labels. You have to replace it with yours.