Previous | Next | (P-PDF) What's Wrong with my PDF?
Topic: How to hide calculated $0 values
Conf: (P-PDF) What's Wrong with my PDF?, Msg: 140142
From: gkaiseril
Date: 9/28/2005 02:50 AM
You have to use the 'Custom script calculation" field. You can use code similar to the following:
// ---> start code
event.value = this.getField("Quantity.0").value * this.getField("Price.0").value;
if (event.value == 0) event.value = "";
// ---> end code
and change the field names as needed.