Skip to main content
Vinitha Subramanya (Myriad Genetics) 님이 #Formulas에 질문했습니다
Hi,

I am trying to build a validation rule that does not allow the close date to be updated for Renewal Opportunities when the stage is not Active or Negotiating. 

 Below is how I have it setup but it doesn't appear to be working.

Custom validation rule not working

Appreciate your advise.
답변 2개
  1. 2022년 2월 8일 오후 6:14
    Hi Ankaiah,

    This is my updated rule right now and happens to work correct. Using the right Recordtype Name field helped

    AND(

    RecordType.Name = '(US) LEAP Renewal',

    ISCHANGED( CloseDate),

    TEXT(StageName) <> 'Active',

    TEXT(StageName) <> 'Negotiating'

    )

     
0/9000