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: 140163
From: gkaiseril
Date: 9/28/2005 05:40 AM
The code for your field names has to read:
// ---> start code
event.value = this.getField("Number of People").value * this.getField("$245").value;
if (event.value == 0) event.value = "";
// ---> end code
The entire srting between the quote marks is the field name not just up to the ".".