I have a combobox on a form where users can select number of payouts. The choices are 3, 5 and 10.
I am trying to implement a validation rule that checks to see if the user tries to change the number of payouts to a number less than what was in the combobox prior to their change. If so, do not allow the change to be saved.
Example:
The current number of payouts is: 10
*User tries to change to 5*
Validation Text: You've made an invalid election.
*System does not allow them to save that change*
I know we need to capture the value in the combobox before update, and also use it in the after update, to compare each selection, yet I'm not sure how to store the value of the before update selection.
Anyone have any ideas? Thanks
I am trying to implement a validation rule that checks to see if the user tries to change the number of payouts to a number less than what was in the combobox prior to their change. If so, do not allow the change to be saved.
Example:
The current number of payouts is: 10
*User tries to change to 5*
Validation Text: You've made an invalid election.
*System does not allow them to save that change*
I know we need to capture the value in the combobox before update, and also use it in the after update, to compare each selection, yet I'm not sure how to store the value of the before update selection.
Anyone have any ideas? Thanks
Comment