Restrict values in a decimal textbox to 9 before precision

0
Hi, I was trying to restrict the values of a decimal textbox to 9 values before precision but was unable to. Tried custom option as well but that didn’t work –    Thankyou for your help in advance.
asked
1 answers
0

Hi Dipti,

 

Have you tried (using Custom validation), $value!=empty and $value < 1000000000? If the value is not required, then you can use $value=empty or ($value!=empty and $value < 1000000000)

answered