You are mixing things up hereFirst of all, assignment of values in JS is
done with a single =, not with 2. So, your NumericField3 == "0" is a
logical expression, not an assignment.Second, RenoCost and NumericField3
are objects. You must ask for the value of the object using
object.rawValue.So, what I would do is this:In the calculate event of
NumericField3var reno = (0 + RenoCost.rawValue) // rawValue returns a
stringvar calcValue = 0if ( reno > 50000 && reno < 100000 ) { calcValue
= reno * 23 /...