Hi SF Community,
I am writing a validation rule where as long as the Type field = Existing Business & Channel Growth - first 12 months that it will not show this error. See the validation rule below:
Please help!
12 件の回答
++Steve Mo and both the TYPE fields should be in an OR Function
AND(
Firstline,
secondline,
thirdline,
fourthline,
OR(
ISPICKVAL(Type, "Existing Business"),
ISPICKVAL(Type, "Channel Growth - more than 12 Months")
)
)