Can someone help.
I am looking for a validaiton rule so that the Solution__c checkbox cant be true when Sales Stage = one of the below Sales Stages.
Qualified
Engaging
2 个回答
Eric Praud (Activ8 Solar Energies) Forum Ambassador
Hi James, Try this:
AND(Solution__c ,CASE(StageName,'Qualified',1,'Engaging',1,0)=1)