Answered
Can anyone tell me what is wrong with this script?
var a = this.getField("201").value;
var b = this.getField("200").value;
var c = this.getField("213").value;
// compute the value
event.value = '';
if( c != 0) {
// perform only is b / c is not zero
event.value = b / c
}
Thanks!
Are you getting any error messages?
Are you getting any messages on the JavaScirpt console?
What is not working?
George Kaiser