1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>VisitCountThisFiscalYearPA_Eng__c</fullName> 
 |      <externalId>false</externalId> 
 |      <formula>Case(month(today()),  
 |  4,if(day(today()) <= value($Label.ShowLastYear_DefermentDay),ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c +  
 |  ThisYear7_Eng__c +  
 |  ThisYear8_Eng__c +  
 |  ThisYear9_Eng__c ,ThisYear4_Eng__c),  
 |  5,ThisYear4_Eng__c +ThisYear5_Eng__c,  
 |  6,ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c,  
 |  7,ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c +  
 |  ThisYear7_Eng__c,  
 |  8,ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c +  
 |  ThisYear7_Eng__c +  
 |  ThisYear8_Eng__c,  
 |  9,ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c +  
 |  ThisYear7_Eng__c +  
 |  ThisYear8_Eng__c +  
 |  ThisYear9_Eng__c,ThisYear4_Eng__c +  
 |  ThisYear5_Eng__c +  
 |  ThisYear6_Eng__c +  
 |  ThisYear7_Eng__c +  
 |  ThisYear8_Eng__c +  
 |  ThisYear9_Eng__c)</formula> 
 |      <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> 
 |      <label>今年1H’拜访次数(能量)</label> 
 |      <precision>18</precision> 
 |      <required>false</required> 
 |      <scale>0</scale> 
 |      <trackTrending>false</trackTrending> 
 |      <type>Number</type> 
 |      <unique>false</unique> 
 |  </CustomField> 
 |  
  |