February 25, 200916 yr Help please!? I have 2 fields that I want to relate through a script. One is a radio button set for a field called "recoat" that is just yes or no. If the button is selected "yes" I want a different field that is "commission" to be set to zero. Is there any way that someone could help me with a script to set this up? Thanks so much!!!!
February 25, 200916 yr You dont really need a script for this. You can use an auto-enter (calculated value) on the commission field. The value can be, Case ( recoat = "yes"; 0; commission ) Make sure that 'Do not replace existing value...' in unchecked.
February 25, 200916 yr Author I don't know what I need. The commission field is already a calculation field pulling from a couple different places. How can i put attached your suggestion to the field?
February 25, 200916 yr Change your commission calculation to: Case ( recoat = "yes"; 0 ; << your calculation here >> )
Create an account or sign in to comment