Answered
HOW TO AUTHOMATICALLY UNDERLINE LETTERS IN IN FORM FIELDS (IN MULTI-LINE MODE)
Dear Community,
How do I do the above subject matter in my forms?
Thanks in anticipation for a quick response.
Dear Community,
How do I do the above subject matter in my forms?
Thanks in anticipation for a quick response.
Sorry for the delay in response. jumped into a meeting that passed it threshold.
i have a Rate, Qty and Amount0 - 8 column with Total Amount underneath. i am to sum up Amount0 - 8.
Thanks.
You can use this code as the field's custom calculation script, then:
var total = 0;
for (var i=0; i<=8; i++) {
total+=Number(this.getField("Amount"+i).valueAsString);
}
event.richValue = [{text: "$" + util.printf("%.2f", total), underline: true}];
And you can remove the Validation script from earlier.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.