2 个回答
Thanks for the quick reply:
The two validation rules that fire are this one:Making sure we are allowed to track this data point (credit)
(!INCLUDES( Period__r.Building__r.LEED_Credit_Checklist__c,"MRc7") && (ISPICKVAL(LEED_Credit__c,"MRc7")
&& !ISPICKVAL( Data_Provided__c ,"NONE"))) And this one:To make sure people enter a start date that is before the end dateif(and(isblank(End_Date__c), isblank(Start_Date__c)),False, End_Date__c < Start_Date__c)What weirds me out a little more is let say record A is the child of record B, I insert record A via a loader but it returns an error because of Record C triggered a validation rule. Shouldn't I get an error for record C but Record A & B should be totally fine?