function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Bryn JonesBryn Jones 

Close Date and $ Value Validation

All,

I am trying to create a validation that says if the Status Changes to "Closed Won", or "Closed Lost", or "Closed Requote" the user mut validate that the close date and value of opportunity is correct.

I am trying to do this as when pulling reports, if the staff havent updated the date that it closed and the dollar value it closed at e get inaccurate reports.

Thanks, Bryn
Boris BachovskiBoris Bachovski
Hi Bryn,

What do you mean by "the user mut validate that the close date and value of opportunity is correct."? What is the criteria for this?

Also, what have you tried so far? Can you please provide a bit of more details around the issue?

Cheers,

Boris
Gigi.OchoaGigi.Ochoa
Are you trying to prevent user from closing an Opportunity without an Amount?  

Try this validation rule:
AND(IsClosed, ISNULL(Amount))