Ok guys, another numpty question!
This is (hopefully) the last thing I need to complete a form that I have struggled to finish for a few months now, so hopefully someone can put me out of my misery.
The form has hidden calculations (to get round my lack of knowledge) so don’t laugh at how I have created some of the calcs, but this last one seems to be the simplest thing that I am stuck on.
There is a row of calculations that should only show if Male or Female is selected from the top dropdown. Now I have been able to work out how to make the relevant line appear when selected, but because of the way I have done it I cannot seem to suppress the zeros in the calcs that shouldn’t show until the next ‘Test’ is filled in.
If anyone has time to take a quick look I would really appreciate someone pointing me in the right direction.
Cheers,
Dooda
Files uploaded here:
http://groups.google.com/group/livecycle/web/Measurement%20sheet_22.6.08_new.pdf
If I read you right it sounds like you don't want to have a zero showing in the field where the calculation is suppose to appear. If that is so and you are working in Acrobat you could try this line of JavaScript. Add it as a custom validation script for the field in question.
//Check to see if the field has a calculation of 0 and if it does make the field blank otherwise put the calculated value in.
if(event.value==0) event.value="";
StevenD