Answered
With formCalc, I do
sum(field1,field2,field3)
When the sum is zero I would like to display null rather than zero.
I am not at all particular about the language for the approach. I will use either formCalc or javascript.
An approach to this problem using Acrobat Forms rather than LifeCycle Designer would be useful as well.
Thank you.
Howard
if (sum(field1,field2,field3) eq 0) ""
else
sum(field1,field2,field3)
endif
This sets the field value to "" when zero. Another approach would be to hide the field.
George Kaiser