| 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
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>NotVisitCountPreviousMonth_Eng__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>if (  |  | case (  |  | month( today()),  |  | 1, ThisYear12_Eng__c,  |  | 2, ThisYear1_Eng__c,  |  | 3, ThisYear2_Eng__c,  |  | 4, ThisYear3_Eng__c,  |  | 5, ThisYear4_Eng__c,  |  | 6, ThisYear5_Eng__c,  |  | 7, ThisYear6_Eng__c,  |  | 8, ThisYear7_Eng__c,  |  | 9, ThisYear8_Eng__c,  |  | 10, ThisYear9_Eng__c,  |  | 11, ThisYear10_Eng__c,  |  | 12, ThisYear11_Eng__c,  |  | -1  |  | ) > 0,  |  | 0,  |  | 1  |  | )</formula> |  |     <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> |  |     <label>上个月未拜访次数(能量)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>0</scale> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |