Hi Alexander ,
Thanks for the code worked like a charm.
In the end i had to edit my code to make calculations.Here goes,
function total1() {
var t1 = getFieldValue(“zpts”);
var t2 = getFieldValue(“p0h8”);
var t3 = getFieldValue(“_x006f_en6”);
console.log(t1)
console.log(t2)
console.log(t3)
var total = (parseFloat(t1) + parseFloat (t2) + parseFloat (t3));
console.log (total)
jQuery(“#dffs_h4hm .ms-formbody”).html(total);
}