Calculated total not saving to DB

button2 is not data bound, it is only used to get total, I have a separate Submit button used to send the changes to the DB. I made the change you suggested and still no luck.

export function button2_click(event, $w, f) {
$w(“#button2”).label = “DONE”;
let val1 = parseInt($w(“#value1”).value, 10)
let val2 = parseInt($w(“#value2”).value, 10)
let val3 = parseInt($w(“#value3”).value, 10)
var ans = val1 + val2 + val3;
$w(“#answer”).value = String(ans);
}