AND(OR( Move_In_Date__c <> NULL,
Deposit__c = FALSE,
Rental_Agreement_w_Addendums__c = FALSE,
Property_Inspections__c = FALSE,
Unit_Inspection__c = FALSE,
Rental_Application__c = FALSE,
Move_In_Questionnaire__c = FALSE,
Move_In_Checklist__c = FALSE,
Thank_You_Note__c = FALSE))
Thanks, Roger
6 件の回答
Hi Roger, I got that part i.e. not automating but when do you want the validation rule to be triggered? assuming you want the validation rule to be trigerred if atleast one of the checkboxes is unchecked then the formula will be as below
AND(
NOT(ISBLANK(Move_In_Date__c)),
OR(
Deposit__c = FALSE,
Rental_Agreement_w_Addendums__c = FALSE,
Property_Inspections__c = FALSE,
Unit_Inspection__c = FALSE,
Rental_Application__c = FALSE,
Move_In_Questionnaire__c = FALSE,
Move_In_Checklist__c = FALSE,
Thank_You_Note__c = FALSE
)
)