Hi All,
I have a requirement i need to allow one Integer Property value till 2 Trillion by using EDIT VALIDATE
Thanks in Advance
Srinivas
Hi All,
I have a requirement i need to allow one Integer Property value till 2 Trillion by using EDIT VALIDATE
Thanks in Advance
Srinivas
I don’t think there’s any OOTB rule available as such.
Hi @SrinivasaR8416,
I don’t think it will be possible to store such a big value in a integer as the range of integer is around -2147483648 to 2147483647. While the value you are trying validate is greater than 2000000000000.
It better to create a double property here as it can store massive numbers and write your own edit validate.
Something like this -
Or you can cleverly avoid all this by asking user to enter number in higher denomination like “Please enter number in millions”. This is what we generally use in our project with dealing with higher numbers.
Hope it helps.
Thanks, Ankit
Hi ankit ,
Yes if i change the property type from Integer to Double issue resolved.
Thanks,
Srinivas
Instead of integer, you can use property type as double.