I have tree number columns, and create a calculated column to get the sum of the tree inputs , but I have to click save to see change . I'm looking to get the result on the calculated column ,when someone type or change a number in one of the three column before pressing save. I tried this JavaScript code :
function myFunction() {
var x = document.getElementById("myInput").value;
document.getElementById("demo").innerHTML = "You wrote: " + x;
}
but in my case I have 3 number columns any idea?