(ISPICKVAL(Reason_Opportunity_Lost__c, "--None--" )))
If the Opportunity is being edited and they change "Stage" to Stage 6 - Closed Lost but do not update "Reason Opportunity Lost" field from --None-- they get an error message.
Thanks, Roger
8 件の回答
AND (
ISCHANGED(StageName),
TEXT(StageName) = "Stage 6 - Closed Lost",
ISBLANK(TEXT(Reason_Opportunity_Lost__c))
)