I am trying to figure out how to make an account mandatory when an opportunity hit 40% or more probability that it will close. Any suggestions or ideas would be greatly appreciated!
Thank you!
Jordan
9 answers
Try this:
AND(
Probability >= 0.4,
OR (
INCLUDES(Account.Insurance_Carrrier__c , "Unknown"),
ISBLANK(Account.Insurance_Carrrier__c)
)
)