I created 3 whole number fields in a CRM form: var1 var2 and result
I need var 2 to be subtracted from var1 and display the result, in the result field
Added the Jscript code to the form event, and added an onchange event to the var1 and var2 field.
I'm receiving the error:
Unable to get value of the property 'Execute': object is null or undefined
Here's my JScript:
function calculates( )
{
var val1 = Xrm.Page.entity.attributes.get(safe_val1).getValue();
var val2 = Xrm.Page.entity.attributes.get(safe_val2).getValue();
if(val1=null) return;
if(val2=null) return;
var result = val1 - val2;
Xrm.Page.entity.attributes.get(safe_result).setValue(result);
}
Thanks in advance to anyone who answers my question!
null, not comparing. 2. In JS, you need to compare using three equality signs, sometimes. 3. I'm not sure if you got the right values in the variables referring to the field names. – Konrad Viltersten Feb 21 at 21:52