Skip to main content
kalebb6709324
Participant
January 17, 2017
Question

i want to multiply a double integer by .01

  • January 17, 2017
  • 1 reply
  • 268 views

hi, i want to take a number in one field and multiply by .01 and place into another textbox.

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
January 17, 2017

Use this code as the custom calculation script of the target field (adjust the field name of the source field, of course):

event.value = Number(this.getField("Text1").valueAsString) * 0.01;