FavoriteSteve Andruszka asked in #Data ManagementSep 11, 2013, 7:22 PMprevent opportunity stage based on fieldHow can I create a validation rule that will prevent a User from selecting the Opportunity Stages of "Warm" or "Hot" unless the checkbox field on the Opportunity record "Communicated" is checked? Thanks!3 answersSortSort by DateSort by Most HelpfulSort by DateLoad more comments...Accepted AnswerDeepak K Anand (Zoom Communications, Inc.)Sep 11, 2013, 7:25 PMHey Steve, AND( Communicated__c = FALSE, OR( TEXT(StageName) = "Warm", TEXT(StageName) = "Hot" ) ) Best, DeepakShow MoreAdd a commentWrite an answer...BoldItalicUnderlineStrikethroughBulleted ListNumbered ListAdd linkCode blockInsert imageAttach filesLink URLCancelSave0/9000Reply
Accepted AnswerDeepak K Anand (Zoom Communications, Inc.)Sep 11, 2013, 7:25 PMHey Steve, AND( Communicated__c = FALSE, OR( TEXT(StageName) = "Warm", TEXT(StageName) = "Hot" ) ) Best, DeepakShow More