Copy link to clipboard
Copied
I am creating a scorecard to be used by my companies inside sales group.
I need to set the form so that if data is entered into one field, a specified number will automatically populate in another field.
Example:
IF a "Follow-Up Quote #" field is filled in THEN a 3 will automatically be entered in the corresponding "Pts" fiield
IF a "New Prospect - Customer" field is filled in THEN a 10 will automatically be entered in the corresponding "Pts" field
IF a "New Quote #" field is filled in THEN a 5 will automatically be entered in the correspondng "Pts" field
Sample Form below for visual
Copy link to clipboard
Copied
You can use something like this as the custom calculation script of the Pts field:
event.value = (this.getField("NameOfOtherField").valueAsString=="") ? "" : 3;
Copy link to clipboard
Copied
Read this tutorial: https://acrobatusers.com/tutorials/change_another_field
Copy link to clipboard
Copied
Worked great for me.
Copy link to clipboard
Copied
Hi Guys,
i have a very similar question,
i am building a tree data collection app through fulcrum and i would really like a auto populate box for the following
Enter Botanical Name = Eucalyptus sp
Auto populate Common Name = Gum.
is there anyway to bring two fields together to make them auto populate
Find more inspiration, events, and resources on the new Adobe Community
Explore Now