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

Formula Help
I have a set of custom fields and a checkbox field. I want my custom fields to be required if the checkbox is checked. Below is the formula I came up with based on the examples... but I can't get it to work as I explained above. How should my formula look to achieve this validation rule?
AND (
OR (
ISNULL ( Meeting_Date__c ),
ISNULL ( Account_Attendees_and_Title__c ),
ISNULL ( Purpose_of_Meeting__c ),
ISNULL ( Key_Take_Aways__c ),
ISNULL ( UOLMG_Attendees__c ),
ISPICKVAL ( Meeting_Type__c , "--NONE--"),
Send_Call_Report_Email__c = TRUE
))
AND (
OR (
ISNULL ( Meeting_Date__c ),
ISNULL ( Account_Attendees_and_Title__c ),
ISNULL ( Purpose_of_Meeting__c ),
ISNULL ( Key_Take_Aways__c ),
ISNULL ( UOLMG_Attendees__c ),
ISPICKVAL ( Meeting_Type__c , "--NONE--"),
Send_Call_Report_Email__c = TRUE
))
Are any of the fileds you are checking for null Text type fields? I do not belive ISNULL works for Text fields.
Check out the TIPS when you search on ISNULL in Help and Training and then select Operators and Functions > ISNULL