You need to sign in to do that
Don't have an account?

Validation rule: revenue and close date fields
Can someone help me troubleshoot this formula - there seems to be no syntax errors but it does not work.
AND(
OR(
Probability = 0.50,
Probability = 0.75,
Probability = 0.90),
MONTH (CloseDate) =10,
MONTH (CloseDate) =11,
MONTH (CloseDate) =12,
YEAR (CloseDate) = YEAR(TODAY()),
ISBLANK( Carry_forward_revenue__c ))
Note: carry_forward_revenue__c is a custom field. And the logic is as follows:
If an opportunity is at 50%, 75% or 90% and the close date falls in Oct 2009, Nov 2009 or Dec 2009 (Q4 2009), the user must input carry forward revenue before saving the opportunity.
Need a solution by end of day today.
AND(
OR(
Carry_Over_Revenue__c <= 0,
ISBLANK(Carry_Over_Revenue__c)),
Probability >= 0.50,
MONTH (CloseDate) >=10,
YEAR (CloseDate) = YEAR(TODAY()))
All Answers
AND(
OR(
Carry_Over_Revenue__c <= 0,
ISBLANK(Carry_Over_Revenue__c)),
Probability >= 0.50,
MONTH (CloseDate) >=10,
YEAR (CloseDate) = YEAR(TODAY()))
Thanks, it works.
This one is giving trouble too.
(Carry_forward_revenue__c+CY_Q1_revenue__c+CY_Q2_revenue__c+CY_Q3_revenue__c+CY_Q4_revenue__c) <> Amount
Error: Revenue split must be equal to Opportunity amount.