| 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>VisitCountThisMonth_Eng__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>if (  |  | case (  |  | month( today()),  |  | 1, ThisYear1_Eng__c,  |  | 2, ThisYear2_Eng__c,  |  | 3, ThisYear3_Eng__c,  |  | 4, ThisYear4_Eng__c,  |  | 5, ThisYear5_Eng__c,  |  | 6, ThisYear6_Eng__c,  |  | 7, ThisYear7_Eng__c,  |  | 8, ThisYear8_Eng__c,  |  | 9, ThisYear9_Eng__c,  |  | 10, ThisYear10_Eng__c,  |  | 11, ThisYear11_Eng__c,  |  | 12, ThisYear12_Eng__c,  |  | -1  |  | ) > 0,  |  | 1,  |  | 0  |  | )</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> | 
 |