creating a formula to get a percentage
i am trying to calculate a cell in my form which will allow an automatic fill in from a percentage of a total amount from another cell. How do I accomplish this. 
i am trying to calculate a cell in my form which will allow an automatic fill in from a percentage of a total amount from another cell. How do I accomplish this. 
OK, you didn't explain it clearly. You want the result to show under "Total Funding Request 50 of cost up to 5000"... Use this code as that field's custom calculation script:
var v = Number(this.getField("CostTotal Cost").valueAsString);
event.value = Math.min(v/2, 5000);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.