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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>Monthly_workshop_day__c</fullName> 
 |      <description>在个人仪表板的日报提交率(%)使用</description> 
 |      <externalId>false</externalId> 
 |      <formula>CASE(Year_month_txt__c,  
 |  "20161",20,  
 |  "20162",17,  
 |  "20163",23,  
 |  "20164",20,  
 |  "20165",20,  
 |  "20166",20,  
 |  "20167",21,  
 |  "20168",23,  
 |  "20169",20,  
 |  "201610",17,  
 |  "201611",22,  
 |  "201612",22,  
 |  "20171",19,  
 |  "20172",17,  
 |  "20173",23,  
 |  "20174",18,  
 |  "20175",20,  
 |  "20176",22,  
 |  "20177",21,  
 |  "20178",23,  
 |  "20179",21,  
 |  "201710",17,  
 |  "201711",22,  
 |  "201712",21,  
 |  "20181",22,  
 |  "20182",16,  
 |  "20183",22,  
 |  "20184",18,  
 |  "20185",22,  
 |  "20186",20,  
 |  "20187",22,  
 |  "20188",23,  
 |  "20189",20,  
 |  "201810",18,  
 |  "201811",22,  
 |  "201812",19,  
 |  "20191",22,  
 |  "20192",16,  
 |  "20193",21,  
 |  "20194",20,  
 |  "20195",22,  
 |  "20196",19,  
 |  "20197",23,  
 |  "20198",22,  
 |  "20199",21,  
 |  "201910",18,  
 |  "201911",21,  
 |  "201912",21,  
 |  0)</formula> 
 |      <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> 
 |      <label>每月工作日</label> 
 |      <precision>18</precision> 
 |      <required>false</required> 
 |      <scale>0</scale> 
 |      <trackHistory>false</trackHistory> 
 |      <trackTrending>false</trackTrending> 
 |      <type>Number</type> 
 |      <unique>false</unique> 
 |  </CustomField> 
 |  
  |