Hi All,
I had created a formula to avoid when an opportunity is created with a past due close date that looks like this: CloseDate < TODAY()
It works most of the time. But the issue comes in when the order ( which is closed) needs to be updated or have final documents attached to the opportunity; Salesforce will not allow the change to the closed order without changing the CLOSE DATE which I do not want to do.
How can I changed the formula to indicate that upon creation of the opportunity, the close date must equal or be greater than today's day.
thank you for your help,
Rochelle
답변 2개
Steven Trumble (Strum Consulting) Forum Ambassador
I assume you mean a validation rule and not a formula field.
AND(
CloseDate < TODAY(),
ISNEW()
)