These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Adobe LiveCycle sum() Issues

zann2626
Registered: Jan 14 2008
Posts: 2

I am having the same issues as user nmara. I created a form in LiveCycle Designer 8.1 I have added quotation marks to the sum() script, and now the error is gone. However the sum just stays at $0.00. I also need to figure out why the sum isn't changing. All the fields are numeric and the total field is set to calculate.

My Product Information:
LiveCycle Designer, Windows
timhuff5
Expert
Registered: Oct 17 2005
Posts: 14
Can you send me a copy of the form to check?

thuff [at] adobe [dot] com

Tim Huff
North American TAM Manager
[link=http://acrobat.timhuff.net/] My Blog - I didn't know Acrobat could do that! [/link]

dk3dknight
Registered: Jan 22 2008
Posts: 136
Does your script contain a round script after the sum script?

I find this script appears to work well set up like this...

No round.

Sum(ValMake3+BillMake3)

round off decimal and replace with whole #

Sum(Round(ValMake1+BillMake1, "abc"))

The abc tells it to remove the decimal by rounding..
you can replace it with a number and it will go to
that specific number.

Hope that helps.