March 20, 200619 yr If the user is filling out a form, and clicks "YES" as a radio button for field 'completed', is there a way to automatically do a calculation and put it into field 'total' ? I would like it to do a different calculation depending on which radio option was selected. This without the user knowingly running a script.
March 21, 200619 yr You can use a merge field and change it to a "button" so that when the user clicks on it, it triggers the script step "Insert calculated result..." or you can also write a script then use "Get (ScriptParameter)" for example: If Get (ScripParameter) = "Yes" Insert calculated Result [Total; Field A * 1.15] Else Set Field [Total; Field A] End if You can set it up in a way such as: Charge Tax for this item? YES / NO So that when user click YES, charge a tax of 15% on the value contained in Field A, otherwise do not charge tax (item is tax exempt). Edited March 21, 200619 yr by Guest
Create an account or sign in to comment