Copy link to clipboard
Copied
I created a field that all calculates to a total, but should be no more than 100%. Is there a way to cap the amount at 100%? I put this in the Validate tab, and it still doesn't work:
CORRECTION:
It works with a warning that the value is over 100
However, if you click "OK", the value in the calculated field keeps the previous total amount before entering a value in the last number field to be calculated:
Is there a way to clear that last number field, or at least, clear the TOTAL field if it is wrong/over 100?
Copy link to clipboard
Copied
Just saw your correction... Try this:
if (event.value>100) {app.alert("Value can't exceed 100."); event.value = "";}
Copy link to clipboard
Copied
Use the script option with this code:
if (event.value>100) event.value = 100;
Copy link to clipboard
Copied
Just saw your correction... Try this:
if (event.value>100) {app.alert("Value can't exceed 100."); event.value = "";}
Copy link to clipboard
Copied
Thank you so much!!!!
Copy link to clipboard
Copied
Yes.