You need to sign in to do that
Don't have an account?
Validation rule: Field Report level must be completed if Contact or Report Broker fields are updated.
I'm in need of help creating a Validation rule that does the following task: Field Report level must be completed if Contact or Report Broker fields are updated.
AND(
ISBLANK(TEXT(Report_Level__c)),
OR(ISCHANGED(Contact),
ISCHANGED(Report_Broker__c))
)
All Answers
OR(
ISCHANGED(Contact),
ISCHANGED(Report_Broker__c)
AND(
ISBLANK(Field_Report_Level__c)
)
)
AND(
ISBLANK(Field_Report_Level__c),
OR(ISCHANGED(Contact),
ISCHANGED(Report_Broker__c))
)
AND(
ISBLANK(TEXT(Report_Level__c)),
OR(ISCHANGED(Contact),
ISCHANGED(Report_Broker__c))
)