Copy link to clipboard
Copied
I have created a fillable form. I have a field (Total Miles) that needs to be a calculation of Miles multiplied by a fixed rate of .545. In the past I have been able to go into the text field properties under Calculate and choose the field name and multiply it by the .545. It seems to have changed and now has Value is the product x of the following fields and I have to choose the fields and cannot edit to make one the hard amount of .545. I don't know JavaScript to write a script for this calculation. Any help would be appreciated. Thanks1
Use the simplified field notation and enter fieldname * 0.545
Copy link to clipboard
Copied
Use the simplified field notation and enter fieldname * 0.545
Copy link to clipboard
Copied
Perfect! I thought it would be something simple. Thank you!
Copy link to clipboard
Copied
I'm doing something very similar and this isn't working. I'm trying to create a service estimate for clients. (I digitize media.). So if someone brings me, say, 100 photos and I charge 50 cents each to digitize them, then in the field notation it should be the field saying how many photos (5x7count) multiplied by 0.5. So, 5x7count * 0.5. But I've tried and nothing happens.
Copy link to clipboard
Copied
The issue is that the field name starts with a number. Change it to count5x7, for example, and it will work.
Or you could use a script for the calculation, instead of the Simplified Field Notation, and then you can call it whatever you want.
Copy link to clipboard
Copied
I'm having the same issue as the person above and I tried your solution of removing the number at the beginnig of the field name but it's still not calculating for me. It shows $1.00 no matter what is in the fillable field.
Copy link to clipboard
Copied
Share your file, please.
Copy link to clipboard
Copied
I figured out the issue right after posting. The field name can't contain any spaces either. Thanks!
Copy link to clipboard
Copied
It can, but if you use the Simplified Field Notation option then you need to escape them, by adding a back-slash before the space(s), like this:
Text\ 1 * Text\ 2