This post explains how to fire the validation rule in the update operation.
Use NOT(ISNEW()) function it will stop the validation rule fire in the insert operation.
Example:
above validation rule will fire only an update operation.Use NOT(ISNEW()) function it will stop the validation rule fire in the insert operation.
Example:
AND (
  NOT(ISNEW()),
  ISCHANGED(Phone)
)
 
No comments:
Post a Comment