How do I sum multiple numeric fields across my form into a total. I've done it before when I've used a table with a Header, but not individual fields.
Deborah A. Worst, AINS,
AIC
Office Solutions Team
513-345-6462
"Learning is a name superior to beauty; learning is better than hidden treasure.....learning is strength inexhaustible."
The Hitopadesa
standalone fields on the same page and I'm using Javascript.
Deborah A. Worst, AINS,
AIC
Office Solutions Team
513-345-6462
"Learning is a name superior to beauty; learning is better than hidden treasure.....learning is strength inexhaustible."
The Hitopadesa
I have the javascript working now, but the Total field has "0.00" in it when there are no values in the calculating fields. I don't want the zeros to show. How would I do that?
If (Field.rawValue == 0)
{
Field.rawValue = “”;
}
This will give you a blank value if the field equals 0.
CONFIDENTIAL NOTICE: This e-mail transmission (and the attachments, if any, accompanying it) may contain confidential information. The information is intended only for the use of the intended recipient. If you are not the intended recipient, you are hereby notified that any forwarding, disclosure, copying, distribution, or the taking of any action in reliance on the contents of this information is strictly prohibited. Any unauthorized interception of this transmission is illegal under the law. If you have received this transmission in error, please promptly notify the sender by reply e-mail, and then destroy all copies of the transmission.
Deborah A. Worst, AINS,
AIC
Office Solutions Team
513-345-6462
"Learning is a name superior to beauty; learning is better than hidden treasure.....learning is strength inexhaustible."
The Hitopadesa