-
1. Re: Having issues with calculations multiplying a field by 20.
Robertlopez Sep 9, 2014 11:29 PM (in response to bbialek)My experience of this problem is the naming of the form field that contains the input data. Make sure there are no spaces in the field name that contains the input. Also check the simplified field notation naming is correct. Finally, the reason you have a "1" is likely because the calculation is not working and just retains the first returned calculation value.
-
2. Re: Having issues with calculations multiplying a field by 20.
bbialek Sep 10, 2014 5:56 AM (in response to Robertlopez)Thanks Robert! I ended up using this formula after reading your reply and a
few others. Another tip I was missing is to make sure that the calculated
field is read only.
// Get first field value, as a number
var v1 = +getField("Quantity1").value;
// Calculate and set this field's value to the result
event.value = 20 * (v1 + 0);
On Wed, Sep 10, 2014 at 2:29 AM, Robertlopez <forums_noreply@adobe.com>
