Skip to main content
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 respostas
  1. 8 de fev. de 2022, 18: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