Work with percentages in Adobe Acrobat 9 Pro

So, I have a small question. I'm new to working with forms in acrobat and have a hard time finding this part. If anyone can help me, I would be very happy!

So, I have a form I created in acrobat 9 pro. Below I've listed "1 single:" and then "assigned percentage. The "percentage allowances" are the fields of different shape for the percentages that I created. For each form field, I limit values do not exceed 100%. I want individuals in filling out this form in order to fill the percentages of each of the names without the things of value (of all three together) percentage TOTAL more than 100%. But... the thing is, I do not have a separate form of "Total" field, there is no room for one. So is there a way to ensure that the total of the three is equal to 100% without going through a form field 'total '?

individaul 1: allocation percentage

individual 2: percentage allocation1

individual 3: percentage attribution2

Please let me know if this makes sense.

Your statements are properly nested. It should be:

var total = Number (getField("individual1").value), (getField("individual2").value) Number + Number (getField("individual3").value);

If (total > 100) {}

App.Alert ("the total of the recipient fields must be equal to 100 %");

Event.RC = false;

} ElseIf (total<100)>

this.getField("statement").display = display.visible;

} ElseIf (total == 100) {}

this.getField("statement").display = display.hidden;

}

Tags: Acrobat

Similar Questions

Maybe you are looking for