Calculation script with RB as trigger, dropdown export value multiplied by textfield value
Not sure if this is possible in Acrobat- I have the following calculation in an online website plugin and I want to include it in my acrobat form. Possible? Thanks in advance Community!!
*NOTE "TextField1.value" is the numerical value entered by the user into the TextField1 and "Dropdown1.export value" is the export value (decimal value) of the Dropdown1 field selection.
if( {TextField1.value} < 5000.01 😞
({TextField1.value}*(0.05+({Dropdown1.export value)))
elseif({TextField1.value}> 5000):
((({TextField1.value}-5000)*0.05))+((5000*(0.05+({Dropdown1.export value}))))
else:
0
endif;