<?xml version="1.0" encoding="UTF-8"?> 
 | 
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 | 
    <fullName>Account_ID_isMatch__c</fullName> 
 | 
    <externalId>false</externalId> 
 | 
    <formula>/* 作成中と申請中のみチェックする */ 
 | 
/* IF(OR(Text(Daily_Report__r.Status__c) = "非承認", Text(Daily_Report__r.Status__c) = "承認"), "5",*/ 
 | 
IF(Free_Input__c, 
 | 
/* 手動 */ 
 | 
  IF(IsBlank(Account_ID__c) && IsBlank(whatid__c), "1", "3"), 
 | 
/* Notesなど連携 */ 
 | 
  IF(Not(IsScheduled__c) && Not(IsBlank(Location__c)) && IsBlank(Account_ID__c) && IsBlank(whatid__c), "1", 
 | 
/* Suggest */ 
 | 
    IF(Account_ID__r.Name == Location__c, "1",  
 | 
    IF(And(IsBlank(Account_ID__c), IsBlank(Location__c)), "1",  
 | 
    IF(And(IsBlank(Account_ID__c), IsBlank(whatid__c)), "2",  
 | 
    IF(Account_ID__c <> Left(whatid__c, 15), "4",  
 | 
      "0" 
 | 
    )))) 
 | 
  ) 
 | 
)</formula> 
 | 
    <label>Account_ID_isMatch</label> 
 | 
    <required>false</required> 
 | 
    <trackHistory>false</trackHistory> 
 | 
    <trackTrending>false</trackTrending> 
 | 
    <type>Text</type> 
 | 
    <unique>false</unique> 
 | 
</CustomField> 
 |