Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide form fields till calculated in Acrobat

Status
Not open for further replies.

bischerboy

Technical User
Nov 21, 2003
71
0
0
NL
Hi,

have three fields, values a, b & c.
a is blank till user input; b and c are calculations of a.

Currently the default values of b and c are showing as $0.00.

Is it possible for these just to be blank until field a is input?

Any suggestions gratefully received...
 
Just found the solution:

In the field's Properties under 'Validation', select 'Run Custom Validation Script' and 'Edit' with the following script...

if (event.value == 0) event.value = "";

This should keep the field blank until an amount is entered in the previous fields...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top