Expand my Community achievements bar.

Scripting Error

Avatar

Level 1

Can anyone direct me as to resolving this error - I seem to have tried everything. 

Generating PDF Document...
Script failed (language is formcalc; context is xfa[0].form[0].topmostSubform[0].Page1[0].Month[0])
script=Round (BalForMonthly/NumPaym)
   Error: arithmetic over/underflow.
PDF generated successfully.

1 warnings/errors reported.

5 Replies

Avatar

Level 6

Might be value for NumPaym getting 0.

RAGHU.

Avatar

Level 1

Tried that as well. Attached is the form if you care to take a look.

Thanks!

Tina Byrne

BYRNE CONSULTING

306 Sparta Court

Bel Air, MD 21014

800-580-6580 toll free (US)

410-836-7848 phone

410-638-6655 fax

www.byrne-consulting.com

Register to Receive Our Complimentary Newsletter

The information contained in this e-mail message and any attachments may be privileged and confidential. If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that any review, dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by replying to this e-mail and delete the message and any attachments from your computer.

Avatar

Level 6

In the form Script on Month field like this.

Round(BalForMonthly/NumPaym)

here the value of NumPaym is null.

Place the script like this.

if(NumPaym > 0) then Round(BalForMonthly/NumPaym) endif

Hope this helps.

RAGHU.

Avatar

Level 1

That did the trick, thank you for your help.

Tina Byrne

BYRNE CONSULTING

306 Sparta Court

Bel Air, MD 21014

800-580-6580 toll free (US)

410-836-7848 phone

410-638-6655 fax

www.byrne-consulting.com

Register to Receive Our Complimentary Newsletter

The information contained in this e-mail message and any attachments may be privileged and confidential. If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that any review, dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by replying to this e-mail and delete the message and any attachments from your computer.