Answered
How can I use conditional formatting for numbers with up to 5 decimal places.
I have a number range from 1.77150 to 1.77221 and I would like it to turn red if it is outside that range.
I have a number range from 1.77150 to 1.77221 and I would like it to turn red if it is outside that range.
As the field's custom validation script enter this code:
if (event.value>=1.77150 && event.value<=1.77221) event.target.textColor = color.red;
else event.target.textColor = color.black;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.