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

HELP with validation rule frustration
I am attempting to write a code that forces a user to enter info into a test field when a specific picklist value is selected. Where my frustration lies is that I have a basically identical rule for my Leads page that works fine and when I duplicated it into my Opportunites page it doesn't.
Code:
AND (
OR(
ISPICKVAL( StageName , "Closed Lost" )),
ISNULL( Closed_Lost_Reason__c )
)
OR(
ISPICKVAL( StageName , "Closed Lost" )),
ISNULL( Closed_Lost_Reason__c )
)
I also tried this code to no avail:
Code:
and( ispickval(StageName , "Closed Lost") ,isnull(Closed_Lost_Reason__c) )
Could someone please help?
ISPICKVAL( Closed_Lost_Reason__c, ""),
ISPICKVAL( StageName, "Closed Lost" )
)
LEN( Closed_Lost_Reason__c ) = 0,
ISPICKVAL( StageName, "Closed Lost" )
)
All Answers
ISPICKVAL( Closed_Lost_Reason__c, ""),
ISPICKVAL( StageName, "Closed Lost" )
)
LEN( Closed_Lost_Reason__c ) = 0,
ISPICKVAL( StageName, "Closed Lost" )
)