You need to sign in to do that
Don't have an account?
Validation Rule for Checking Percentage Range not working
Hi All,
I have a field which should allow to enter percentage only between 0.0 and 100.0 including these values.I have tried the below and it was working too but suddenly its not working.Please Help...
OR(
Test__c >= 0.0,
Test__c <= 100.0
)
Thanks for any Help in Advance...!
I have a field which should allow to enter percentage only between 0.0 and 100.0 including these values.I have tried the below and it was working too but suddenly its not working.Please Help...
OR(
Test__c >= 0.0,
Test__c <= 100.0
)
Thanks for any Help in Advance...!
Thanks so much for your time...:)
I tried out the below and it worked out for me :
OR(
TEST__c > 1.0,
TEST__c < 0.0
)
All Answers
First you check the Field data type,If the field is Percentage data type means use the below formula : To enter percentage only between 0.0 and 100.0 including these values
OR( Test__c <= 0, Test__c >= 1)
Then you got the proper result.
Let me know if you want any further help.
If those points are help means mark these as a best answer.
Thanks,
Raj
(Sweet Potato Tec)
Your formula is working but its not taking value 0.0 and 100.0.it should allo that too.
Thanks.
Thanks so much for your time...:)
I tried out the below and it worked out for me :
OR(
TEST__c > 1.0,
TEST__c < 0.0
)
OR(
Test__c > 1.0,
Test__c <= 0.0,
ISBLANK(Test__c))
)
This would allow the User to Enter from 0.01% to 100%. Anything outside of these percentages including a blank field would fire the validation rule.
Hopefully this helps!
The Solution for Percentage field is
if we need if from 1%-20% then the solution is
OR(
Test__c >= 0.01,
Test__c <= 0.20
)