in FC9 I had both dropdown Suggest and an errormessage in the field. Below is something similar to what use to work. But it now either flags all rows in the table or gives error message in the table, if you try and use both. I'm trying to find a work around or fix.
var x = Field("Qty").Value;
var y = Field("UnitPrice").Value;
var z = Field("Amount").Value;
var amount = x*y
if (z==amount.toFixed(2)){
this.Field("Amount").IsMatched;
CheckSucceeded = true;
}
else
CheckSucceeded = false;
ErrorMessage = "Amount is not matched"
Suggest( amount.toFixed(2));
コメント
3件のコメント
Here are some corrections made at a first glance:
Please let me know if this code won't work still.
Best regards,
Vladislav
サインインしてコメントを残してください。