Skip to main content
I would like to set a validation rule for the following.  When an opportunity is the type of Closed/Won or Closed/Lost the close date automtically reflects when the opp was moved to a close state.

 

We have BDs that close opp and leave the close date well into the future.
20 个回答
  1. 2017年10月5日 13:43

    Okay I smell a rat...  do me a favor and re-test the Opportunity using this Rule instead

    AND(

    OR(

    ISNEW(),

    ISCHANGED(StageName)

    ),

    CloseDate <> TODAY()

    )

     

     
0/9000