• Michelle Daniels 89
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 5
    Replies
I'm trying to create a validation rule on a custom object where the record can only be closed by the owner of the record. My formula does not seem to be working for some reason. It allows anyone to continue to close without throwing the validation error. Does anyone have any ideas?

AND(Owner:User.Id  <> $User.Id, ISPICKVAL( Status__c, "Closed"))
I'm trying to create a validation rule on a custom object where the record can only be closed by the owner of the record. My formula does not seem to be working for some reason. It allows anyone to continue to close without throwing the validation error. Does anyone have any ideas?

AND(Owner:User.Id  <> $User.Id, ISPICKVAL( Status__c, "Closed"))