These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

calculations

soccergrl0875
Registered: Jan 4 2007
Posts: 2

How do I take field "a" and multiple by 10% and have the answer in field "b"? I am in the properties box, calculate tab, simplified field notation for field "b".

tedpadova
ExpertTeam
Registered: Dec 31 2005
Posts: 848
add the script below to the Calcualte properties in field b.

var f = this.getField("a");
event.value = f.value * .1

ted

The author of numerous books on Acrobat, Photoshop, Illustrator and the Adobe Creative Suite, and an international speaker on Adobe Acrobat, Ted Padova is a well-known PDF guru.

suewhitehead
Registered: Jun 3 2008
Posts: 232
Is there a reference list of all Simplified Field Notation commands that I can download? I have been searching but have only found individual references to a single calculation each time.