You need to sign in to do that
Don't have an account?
petec@i2isys
And/or in validation rule
Hi all,
I have a validation rule I need to run where 3 things need to be true for it to fire. A needs to = True, B=True and C OR D = True.
I can't figure out the syntax for this. I thought maybe:
AND(A=True, B=True, OR(C=True,D=True) But that didn't work. Any ideas?
I have a validation rule I need to run where 3 things need to be true for it to fire. A needs to = True, B=True and C OR D = True.
I can't figure out the syntax for this. I thought maybe:
AND(A=True, B=True, OR(C=True,D=True) But that didn't work. Any ideas?
Please Try this validation rule:-
AND(A=True, B=True,OR(C=True,D=True))
Please mark as best answer if it helps you.
Thank You
Ajay Dubedi
All Answers
OR
OR (C=True,D=True)
It should be like below any one way :
===========
AND ( AND(A=True, B=True), OR(C=True,D=True) )
===========
( A=True && B=True && (C=True || D=True) )
===========
AND ( A=True, B=True, OR(C=True,D=True) )
===========
Can you please Let me know if it helps or not!!!
If it helps don't forget to mark this as a best answer!!!
Thanks,
Raj
Please Try this validation rule:-
AND(A=True, B=True,OR(C=True,D=True))
Please mark as best answer if it helps you.
Thank You
Ajay Dubedi